mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-08 02:10:24 +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))
|
||
|
|
}
|