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,9 @@
package registrynew
// Conversion
type Conversion interface {
InRepr() string
OutRepr() string
Run(Expr) (Expr, error)
}