package common import "strings" type Driver interface { Read() (any, error) Render(*strings.Builder) error }