TheMathemagicians/sevenkeys/ui/model.go

11 lines
113 B
Go
Raw Normal View History

2024-06-05 12:06:24 +00:00
package ui
type Model struct {
WindowHeight int
WindowWidth int
}
func NewModel() Model {
return Model{}
}