Files
mayfly-go/server/internal/machine/infra/persistence/machine_cmd_conf.go
2025-07-27 21:02:48 +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{}
}