mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-15 20:26:36 +08:00
11 lines
154 B
Go
11 lines
154 B
Go
|
|
package repository
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/internal/flow/domain/entity"
|
||
|
|
"mayfly-go/pkg/base"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Execution interface {
|
||
|
|
base.Repo[*entity.Execution]
|
||
|
|
}
|