10 lines
99 B
Go
10 lines
99 B
Go
package view
|
|
|
|
type View int
|
|
|
|
const (
|
|
Menu View = iota
|
|
Viewer View = iota
|
|
Login View = iota
|
|
)
|