13 lines
164 B
Go
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
|
|
}
|