mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-09 19:00:27 +08:00
10 lines
143 B
Go
10 lines
143 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(new(oauth2AppImpl), ioc.WithComponentName("Oauth2App"))
|
|
}
|