simplify the driver interface

This commit is contained in:
alu
2026-08-07 09:29:17 -07:00
parent b99bb45877
commit 31c409a94c
13 changed files with 181 additions and 197 deletions
+8
View File
@@ -0,0 +1,8 @@
package common
import "strings"
type Driver interface {
Read() (any, error)
Render(*strings.Builder) error
}