Files
pobounty/constants.go

22 lines
307 B
Go
Raw Normal View History

2023-09-17 13:34:03 -04:00
package main
2023-10-02 14:38:49 -04:00
func GetConfigPath() string {
return "resources/settings/config.json"
2023-09-17 13:34:03 -04:00
}
2023-10-02 14:38:49 -04:00
func GetLogPath() string {
return "dashboard.log"
2023-09-17 13:34:03 -04:00
}
func GetTimerFormatString() string {
return "D:H:M:S"
}
func GetWinnerText(qty int) string {
str := "OUR WINNER"
if qty > 1 {
str = str + "S"
}
return str
}