page.go

1package page
2
3type PageID string
4
5// PageChangeMsg is used to change the current page
6type PageChangeMsg struct {
7	ID PageID
8}