diff options
| author | ewy <ewy0@protonmail.com> | 2026-05-22 16:54:49 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-05-22 16:54:49 +0200 |
| commit | 007e2de369f9fc26da3237646de14f2af5052ee8 (patch) | |
| tree | f81557385628fc93f1ef9616b8bc75a304f9d740 /model/act.go | |
initial commit
Diffstat (limited to 'model/act.go')
| -rw-r--r-- | model/act.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/model/act.go b/model/act.go new file mode 100644 index 0000000..3a95939 --- /dev/null +++ b/model/act.go @@ -0,0 +1,9 @@ +package model + +type Act struct { + Floor int + Label string + Key string +} + +var Acts = make(map[string]*Act) |
