format.go 351 B

123456789
  1. package session
  2. var (
  3. stateFormats = map[int][]string{
  4. BrowseState: []string{"BROWSE 📖", "Use the navigation keys to browse the content. Press enter to return the result.", "STORE 🟢"},
  5. LoadingStoreState: []string{"LOAD %s", "Loading the store...", "STORE 🔴"},
  6. ErrorState: []string{"ERROR 📖", "%v", "STORE 🟢"},
  7. }
  8. )