formats.go 248 B

12345678
  1. package filter
  2. var (
  3. formats = map[int][]string{
  4. FilterState: []string{"FILTER 📖", "Currently selected %d elements from the store", "STORE 🟢"},
  5. LoadingStoreState: []string{"LOAD %S", "Loading the store...", "STORE 🔴"},
  6. }
  7. )