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