Files
mayfly-go/server/internal/flow/infra/persistence/execution.go

16 lines
277 B
Go
Raw Normal View History

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{}
}