forked from noxious/server
8 lines
217 B
TypeScript
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())
|
|
}; |