besterd/source/handlers/commands.d

11 lines
145 B
D
Raw Normal View History

2020-05-01 17:48:45 +02:00
module handlers.commands;
import std.json : JSONValue;
public class Command
{
JSONValue execute()
{
return JSONValue();
}
}