Files
hatchet/pkg/repository/step.go
T
2025-03-11 14:57:13 -04:00

12 lines
234 B
Go

package repository
import (
"context"
"github.com/hatchet-dev/hatchet/pkg/repository/postgres/dbsqlc"
)
type StepRepository interface {
ListStepExpressions(ctx context.Context, stepId string) ([]*dbsqlc.StepExpression, error)
}