12 lines
266 B
TypeScript
Raw Normal View History

import Command from "@oclif/command";
import { createApp, ServerState, WebSocketApi } from "../";
import log from "@common/logger";
export default class ManageCommand extends Command {
2018-09-03 17:38:13 -06:00
run(): Promise<any> {
throw new Error("Method not implemented.");
}
}