mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
16 lines
387 B
Go
16 lines
387 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{base.RepoImpl[*entity.MachineCmdConf]{M: new(entity.MachineCmdConf)}}
|
||
|
|
}
|