You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Command names are currently in their own static list, but the args for each command are currently hardcoded in place. Add some sort of method for tracking/maintaining those arg names and methods?
The text was updated successfully, but these errors were encountered:
I also think we should have a better separation between different types of commands.
There are three types of commands as of now:
Console commands
Control commands
Message commands
Console commands are not sent over network and configure things on the local machine.
Control commands are sent over the network and are related to user presence, channels, etc.
Message commands are text messages that are sent to groups or individuals.
I want to change the network protocol to support a more well-defined format for control and message commands, while allowing the console interface to present whatever is best form a user interaction standpoint and just call the appropriate methods from the Chatr library.
Command names are currently in their own static list, but the args for each command are currently hardcoded in place. Add some sort of method for tracking/maintaining those arg names and methods?
The text was updated successfully, but these errors were encountered: