UNPKG

@towercg2/cli

Version:

The command-line components for TowerCG2's server.

12 lines (10 loc) 206 B
import { Command, command, metadata, param } from "clime"; @command({ description: "test command" }) export default class Ping extends Command { @metadata execute() { console.log("Ping!"); } }