besterd/source/handlers/commands.d

11 lines
145 B
D

module handlers.commands;
import std.json : JSONValue;
public class Command
{
JSONValue execute()
{
return JSONValue();
}
}