9 lines
336 B
Go
9 lines
336 B
Go
package session
|
|
|
|
var (
|
|
stateFormats = map[int][]string{
|
|
BrowseState: []string{"BROWSE 📖", "Total sessions in the store: %d, Exams in the current session: %d", "STORE 🟢"},
|
|
LoadingStoreState: []string{"LOAD %s", "Loading the store...", "STORE 🔴"},
|
|
ErrorState: []string{"ERROR 📖", "%v", "STORE 🟢"},
|
|
}
|
|
)
|