chessbot/main.go

14 lines
133 B
Go

package main
import (
"github.com/ekzyis/chessbot/chess"
)
func main() {
var (
b = chess.NewBoard()
)
b.Save("board.png")
}