Files
finally-a-monolithic-linux-…/app/common/drivers.go
T
2026-08-07 14:49:21 -07:00

7 lines
87 B
Go

package common
type Driver interface {
Read() (any, error)
Render(Terminal) error
}