mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-05-03 07:59:31 -05:00
12 lines
234 B
Go
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)
|
|
}
|