mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-21 09:44:21 +01:00
9 lines
127 B
Go
9 lines
127 B
Go
package page
|
|
|
|
type PageID string
|
|
|
|
// PageChangeMsg is used to change the current page
|
|
type PageChangeMsg struct {
|
|
ID PageID
|
|
}
|