refactor(commands): remove args from parse command as it is no longer used anymore

This commit is contained in:
dusk 2025-01-12 05:55:25 +09:00
parent 58b5a26eca
commit a21210f3ce
No known key found for this signature in database
3 changed files with 0 additions and 7 deletions

View file

@ -18,7 +18,6 @@ interface Parameter {
};
dictionary ParsedCommand {
string command_ref;
sequence<string> args;
record<string, Parameter> params;
record<string, string?> flags;
};