module handlers.commands;

import std.json : JSONValue;

public class Command
{
    JSONValue execute()
    {
        return JSONValue();
    }
}