1
0
forked from noxious/server
2024-06-04 19:10:35 +02:00

8 lines
217 B
TypeScript

import { Server } from "socket.io";
import ZoneManager from "../ZoneManager";
type CommandInput = string[]
export default function (input: CommandInput, io: Server) {
console.log(ZoneManager.getLoadedZones())
};