feat: new registry

This commit is contained in:
2026-02-06 23:19:27 -05:00
parent a3ee34732e
commit 7054442dc6
6 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package registrynew
type Process interface {
Get() (Expr, error)
Step(int) bool
}
type Engine interface {
Load(Expr) Process
Name() string
InRepr() string
}