9 lines
351 B
Go
9 lines
351 B
Go
package session
|
|
|
|
var (
|
|
stateFormats = map[int][]string{
|
|
BrowseState: []string{"BROWSE 📖", "Use the navigation keys to browse the content. Press enter to return the result.", "STORE 🟢"},
|
|
LoadingStoreState: []string{"LOAD %s", "Loading the store...", "STORE 🔴"},
|
|
ErrorState: []string{"ERROR 📖", "%v", "STORE 🟢"},
|
|
}
|
|
)
|