mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-02-12 15:55:36 +08:00
14 lines
242 B
Go
14 lines
242 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(newMsgRepo())
|
|
ioc.Register(newMsgChannelRepo())
|
|
ioc.Register(newMsgTmplRepo())
|
|
ioc.Register(newMsgTmplChannelRepo())
|
|
ioc.Register(newMsgTmplBizRepo())
|
|
}
|