mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 11:00:38 +00:00
10 lines
214 B
Java
10 lines
214 B
Java
package org.asamk.signal.commands;
|
|
|
|
import net.sourceforge.argparse4j.inf.Namespace;
|
|
|
|
import org.asamk.Signal;
|
|
|
|
public interface DbusCommand extends Command {
|
|
|
|
int handleCommand(Namespace ns, Signal signal);
|
|
}
|