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,10 @@
package registrynew
import "iter"
type Registry interface {
ListEngines() iter.Seq[string]
GetEngine(name string) (Engine, error)
ListReprs() iter.Seq[string]
}