mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
15 lines
315 B
Go
15 lines
315 B
Go
|
package display
|
||
|
|
||
|
const (
|
||
|
PanelBrowser = "browser"
|
||
|
PanelBookmarks = "bkmk"
|
||
|
PanelDownload = "dl"
|
||
|
PanelDownloadChoiceModal = "dlChoice"
|
||
|
PanelHelp = "help"
|
||
|
|
||
|
PanelYesNoModal = "yesno"
|
||
|
PanelInfoModal = "info"
|
||
|
PanelErrorModal = "error"
|
||
|
PanelInputModal = "input"
|
||
|
)
|