mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-05 00:40:24 +08:00
14 lines
265 B
Go
14 lines
265 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import "mayfly-go/pkg/ioc"
|
||
|
|
|
||
|
|
func InitIoc() {
|
||
|
|
ioc.Register(new(Dashbord))
|
||
|
|
ioc.Register(new(Db))
|
||
|
|
ioc.Register(new(Instance))
|
||
|
|
ioc.Register(new(DbSqlExec))
|
||
|
|
ioc.Register(new(DbSql))
|
||
|
|
ioc.Register(new(DataSyncTask))
|
||
|
|
ioc.Register(new(DbTransferTask))
|
||
|
|
}
|