mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
13 lines
218 B
Go
13 lines
218 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/internal/auth/infrastructure/persistence"
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
persistence.Init()
|
|
|
|
ioc.Register(new(oauth2AppImpl), ioc.WithComponentName("Oauth2App"))
|
|
}
|