Files
mayfly-go/server/internal/msg/infrastructure/persistence/msg_tmpl_biz.go
2025-04-15 21:42:31 +08:00

16 lines
291 B
Go

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{}
}