summaryrefslogtreecommitdiff
path: root/model/act.go
blob: 3a95939716ca3c27940249984d261c18978d782e (plain)
1
2
3
4
5
6
7
8
9
package model

type Act struct {
	Floor int
	Label string
	Key   string
}

var Acts = make(map[string]*Act)