page.go 127 B

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