mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-07 09:50:26 +08:00
11 lines
183 B
Go
11 lines
183 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import "mayfly-go/pkg/ioc"
|
||
|
|
|
||
|
|
func InitIoc() {
|
||
|
|
ioc.Register(new(AccountLogin))
|
||
|
|
ioc.Register(new(LdapLogin))
|
||
|
|
ioc.Register(new(Oauth2Login))
|
||
|
|
ioc.Register(new(Captcha))
|
||
|
|
}
|