mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-25 09:06:34 +08:00
refactor: 消息模块重构,infra包路径简写等
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package persistence
|
||||
|
||||
import (
|
||||
"mayfly-go/internal/machine/domain/entity"
|
||||
"mayfly-go/internal/machine/domain/repository"
|
||||
"mayfly-go/pkg/base"
|
||||
)
|
||||
|
||||
type machineCmdConfRepoImpl struct {
|
||||
base.RepoImpl[*entity.MachineCmdConf]
|
||||
}
|
||||
|
||||
func newMachineCmdConfRepo() repository.MachineCmdConf {
|
||||
return &machineCmdConfRepoImpl{}
|
||||
}
|
||||
Reference in New Issue
Block a user