mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-09 19:00:27 +08:00
11 lines
167 B
Go
11 lines
167 B
Go
|
|
package repository
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/internal/machine/domain/entity"
|
||
|
|
"mayfly-go/pkg/base"
|
||
|
|
)
|
||
|
|
|
||
|
|
type MachineCmdConf interface {
|
||
|
|
base.Repo[*entity.MachineCmdConf]
|
||
|
|
}
|