utils/main.go
2025-05-06 11:24:54 -07:00

22 lines
312 B
Go

package main
import (
"flag"
"git.merith.xyz/packages/utils/debug"
)
func main() {
flag.Parse()
// this will be expanded as more and more tests are added
if !debug.Enabled {
flag.Usage()
}
// Test debug.Print()
debug.Print("Hello World")
debug.Title = "Test Title"
debug.Print("Hello World")
}