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