2024-04-22 14:24:29 +02:00
|
|
|
package session
|
|
|
|
|
|
|
|
var (
|
|
|
|
stateFormats = map[int][]string{
|
2024-04-24 09:29:01 +02:00
|
|
|
BrowseState: []string{"BROWSE 📖", "Total sessions in the store: %d, Exams in the current session: %d", "STORE 🟢"},
|
2024-04-22 14:24:29 +02:00
|
|
|
LoadingStoreState: []string{"LOAD %s", "Loading the store...", "STORE 🔴"},
|
|
|
|
ErrorState: []string{"ERROR 📖", "%v", "STORE 🟢"},
|
|
|
|
}
|
|
|
|
)
|