11 lines
153 B
Go
11 lines
153 B
Go
package api
|
|
|
|
import (
|
|
"github.com/kataras/iris/v12"
|
|
)
|
|
|
|
func Sudoku(party iris.Party) {
|
|
party.Get("/", getSudokuList)
|
|
party.Post("/", addSudokuGame)
|
|
}
|