probo/cmd/rank/format.go

10 lines
273 B
Go
Raw Permalink Normal View History

2024-06-05 12:16:08 +02:00
package rank
var (
stateFormats = map[int][]string{
BrowseState: []string{"BROWSE 📖", "Total scores: %d", "🟢"},
ExecutingScriptState: []string{"EXE %s", "Executing script...", "🔴"},
ErrorState: []string{"ERROR 📖", "%v", "🔴"},
}
)