TheMathemagicians/sevenkeys/ui/model.go

11 lines
113 B
Go

package ui
type Model struct {
WindowHeight int
WindowWidth int
}
func NewModel() Model {
return Model{}
}