Fix combo rules and add some example config.

This commit is contained in:
Anna Rose Wiggins 2025-07-02 14:53:52 -04:00
parent 428749a519
commit a5b59bf39e
6 changed files with 93 additions and 6 deletions

View file

@ -10,7 +10,7 @@ func Log(msg string) {
}
func Logf(msg string, params ...interface{}) {
fmt.Printf(msg, params...)
fmt.Printf(msg+"\n", params...)
}
func LogError(err error, msg string) {