mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
16 lines
277 B
Go
16 lines
277 B
Go
|
|
package persistence
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/internal/flow/domain/entity"
|
||
|
|
"mayfly-go/internal/flow/domain/repository"
|
||
|
|
"mayfly-go/pkg/base"
|
||
|
|
)
|
||
|
|
|
||
|
|
type exectionImpl struct {
|
||
|
|
base.RepoImpl[*entity.Execution]
|
||
|
|
}
|
||
|
|
|
||
|
|
func newExectionRepo() repository.Execution {
|
||
|
|
return &exectionImpl{}
|
||
|
|
}
|