probo/cmd/session/format.go

10 lines
351 B
Go
Raw Normal View History

2024-04-22 14:24:29 +02:00
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 🟢"},
}
)