UNPKG
@towercg2/cli
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
The command-line components for TowerCG2's server.
github.com/towercg2/towercg2
towercg2/towercg2
@towercg2/cli
/
src
/
commands
/
ping.ts
12 lines
(10 loc)
•
206 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Command
, command, metadata, param }
from
"clime"
;
@command
({
description
:
"test command"
})
export
default
class
Ping
extends
Command
{
@metadata
execute
(
) {
console
.
log
(
"Ping!"
); } }