Files
mayfly-go/server/internal/machine/infrastructure/persistence/machine_cmd_conf.go
meilin.huang e56788af3e refactor: dbm
2024-12-08 13:04:23 +08:00

16 lines
319 B
Go

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