Files
lambda/internal/registry_new/engine.go
2026-02-06 23:19:27 -05:00

13 lines
164 B
Go

package registrynew
type Process interface {
Get() (Expr, error)
Step(int) bool
}
type Engine interface {
Load(Expr) Process
Name() string
InRepr() string
}