14 lines
237 B
Go
14 lines
237 B
Go
package main
|
|
|
|
import (
|
|
log "git.staur.ca/stobbsm/simplelog"
|
|
)
|
|
|
|
func main() {
|
|
log.Info("examples.main").Msg("Example: GenWithDefaults")
|
|
GenWithDefaults()
|
|
|
|
log.Info("examples.main").Msg("Example: CollisionChecks")
|
|
CollisionChecks()
|
|
}
|