tind/examples/main.go

14 lines
237 B
Go
Raw Permalink Normal View History

2024-02-26 01:34:01 +00:00
package main
2024-04-07 18:27:05 +00:00
import (
log "git.staur.ca/stobbsm/simplelog"
)
2024-02-26 01:34:01 +00:00
func main() {
2024-04-07 18:27:05 +00:00
log.Info("examples.main").Msg("Example: GenWithDefaults")
2024-03-03 15:44:42 +00:00
GenWithDefaults()
2024-04-07 18:27:05 +00:00
log.Info("examples.main").Msg("Example: CollisionChecks")
2024-03-03 15:44:42 +00:00
CollisionChecks()
2024-02-26 01:34:01 +00:00
}