sudoku-funpark/main.go

15 lines
223 B
Go

package main
import (
"gitea.ligthert.net/golang/sudoku-funpark/solver"
)
func main() {
// Set global logger parameters
// log.SetFlags(log.LstdFlags | log.Lshortfile)
// Run the meat of the program
solver.Run()
}