moxxy/lib/shared/debug.dart

11 lines
225 B
Dart

enum DebugCommand {
/// Clear the stream resumption state so that the next connection is fresh.
clearStreamResumption(0),
requestRoster(1);
const DebugCommand(this.id);
/// The id of the command
final int id;
}