mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-04 05:36:35 +08:00
feat: message notify
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package persistence
|
||||
|
||||
import (
|
||||
"mayfly-go/internal/msg/domain/entity"
|
||||
"mayfly-go/internal/msg/domain/repository"
|
||||
"mayfly-go/pkg/base"
|
||||
)
|
||||
|
||||
type msgTmplBizRepoImpl struct {
|
||||
base.RepoImpl[*entity.MsgTmplBiz]
|
||||
}
|
||||
|
||||
func newMsgTmplBizRepo() repository.MsgTmplBiz {
|
||||
return &msgTmplBizRepoImpl{}
|
||||
}
|
||||
Reference in New Issue
Block a user