Documentation
¶
Index ¶
Constants ¶
View Source
const ( LABLeft = 1 << 0 LABRight = 1 << 1 LABTop = 1 << 2 LABDown = 1 << 3 )
Variables ¶
View Source
var Field = map[string]int{ "cross": LABLeft | LABRight | LABTop | LABDown, "downleft": LABLeft | LABDown, "downright": LABRight | LABDown, "edown": LABDown, "eleft": LABLeft, "empty": 0, "eright": LABRight, "etop": LABTop, "full": LABLeft | LABRight | LABTop | LABDown, "horizontal": LABLeft | LABRight, "lefttop": LABLeft | LABTop, "rightdown": LABRight | LABDown, "tdown": LABLeft | LABRight | LABDown, "tleft": LABLeft | LABTop | LABDown, "topleft": LABTop | LABLeft, "topright": LABTop | LABRight, "tright": LABRight | LABTop | LABDown, "ttop": LABTop | LABLeft | LABRight, "vertical": LABTop | LABDown, }
View Source
var SalonDigitalImage []byte
View Source
var SalonDigitalJSON []byte
View Source
var StaticFS embed.FS
View Source
var TemplateFS embed.FS
Functions ¶
This section is empty.
Types ¶
type FieldEntry ¶
type Labyrinth ¶
type Labyrinth struct { Fields [][]FieldEntry Detail string Size int North, East, South, West bool // contains filtered or unexported fields }
func (*Labyrinth) GetMovements ¶
type Salon ¶
type Salon struct {
// contains filtered or unexported fields
}
func (*Salon) MainHandler ¶
func (s *Salon) MainHandler(w http.ResponseWriter, r *http.Request)
func (*Salon) MoveHandler ¶
func (s *Salon) MoveHandler(w http.ResponseWriter, r *http.Request)
Click to show internal directories.
Click to hide internal directories.