feat: cli versions

This commit is contained in:
2026-01-30 17:54:47 -05:00
parent 0ec52008bb
commit 0cdce0e42c
17 changed files with 177 additions and 335 deletions

7
pkg/engine/engine.go Normal file
View File

@@ -0,0 +1,7 @@
package engine
type Engine[T any] interface {
Get() (T, error)
Set(T) error
Step(int) bool
}