level-up/shared/script/index.ts
Moritz Ruth 88f0632194
All checks were successful
Build / build (push) Successful in 1m14s
Update dependencies, containerize, add build workflow
2025-03-03 00:35:21 +01:00

12 lines
No EOL
302 B
TypeScript

import type { Script } from "./types"
import { roomHauseingang } from "./rooms/hauseingang"
import { roomKueche } from "./rooms/küche"
const script: Script = {
roomsById: new Map
}
script.roomsById.set("hauseingang", roomHauseingang)
script.roomsById.set("küche", roomKueche)
export { script }