()
| 28 | var cpt *captcha.Captcha |
| 29 | |
| 30 | func init() { |
| 31 | // use beego cache system store the captcha data |
| 32 | fc := &cache.FileCache{CachePath: "./cache/captcha"} |
| 33 | cpt = captcha.NewWithFilter("/captcha/", fc) |
| 34 | } |
| 35 | |
| 36 | //第三方登录回调 |
| 37 | //封装一个内部调用的函数,loginByMemberId |
nothing calls this directly
no outgoing calls
no test coverage detected