mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
11 lines
297 B
Java
11 lines
297 B
Java
package org.asamk.signal.commands;
|
|
|
|
import net.sourceforge.argparse4j.inf.Namespace;
|
|
|
|
import org.asamk.Signal;
|
|
import org.freedesktop.dbus.DBusConnection;
|
|
|
|
public interface ExtendedDbusCommand extends Command {
|
|
|
|
int handleCommand(Namespace ns, Signal signal, DBusConnection dbusconnection);
|
|
}
|