7 lines
87 B
Go
7 lines
87 B
Go
package common
|
|
|
|
type Driver interface {
|
|
Read() (any, error)
|
|
Render(Terminal) error
|
|
}
|