2024-08-07 06:51:51 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-09-04 06:07:11 +00:00
|
|
|
"encoding/json"
|
2024-08-07 06:51:51 +00:00
|
|
|
"fmt"
|
2024-09-04 06:07:11 +00:00
|
|
|
"log"
|
2024-08-15 07:50:50 +00:00
|
|
|
"strings"
|
2024-08-07 06:51:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func maybeSuffix(counter int) string {
|
|
|
|
if counter == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("%d", counter+1)
|
|
|
|
}
|
2024-08-15 07:50:50 +00:00
|
|
|
|
|
|
|
func titleCase(s string) string {
|
|
|
|
return strings.ToUpper(s[0:1]) + s[1:]
|
|
|
|
}
|
2024-09-04 06:07:11 +00:00
|
|
|
|
|
|
|
func prettyPrint(obj interface{}) {
|
|
|
|
jb, err := json.MarshalIndent(obj, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Println(string(jb))
|
|
|
|
}
|
2024-09-11 05:40:52 +00:00
|
|
|
|
|
|
|
func ifv[T any](condition bool, trueval T, falseval T) T {
|
|
|
|
if condition {
|
|
|
|
return trueval
|
|
|
|
}
|
|
|
|
return falseval
|
|
|
|
}
|