mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +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]
|
|
}
|