Reformat [stage]

This commit is contained in:
crschnick
2024-06-15 11:10:39 +00:00
parent 5ce9538633
commit 8f49c35aca
201 changed files with 1335 additions and 820 deletions
+15 -3
View File
@@ -1,9 +1,10 @@
import com.fasterxml.jackson.databind.Module;
import io.xpipe.beacon.BeaconInterface;
import io.xpipe.beacon.BeaconJacksonModule;
import io.xpipe.beacon.api.*;
import io.xpipe.core.util.ModuleLayerLoader;
import com.fasterxml.jackson.databind.Module;
open module io.xpipe.beacon {
exports io.xpipe.beacon;
exports io.xpipe.beacon.test;
@@ -25,8 +26,19 @@ open module io.xpipe.beacon {
BeaconInterface.Loader;
provides Module with
BeaconJacksonModule;
provides BeaconInterface with ShellStartExchange, ShellStopExchange, ShellExecExchange, DaemonModeExchange, DaemonStatusExchange, DaemonFocusExchange, DaemonOpenExchange, DaemonStopExchange, HandshakeExchange, ConnectionQueryExchange,
provides BeaconInterface with
ShellStartExchange,
ShellStopExchange,
ShellExecExchange,
DaemonModeExchange,
DaemonStatusExchange,
DaemonFocusExchange,
DaemonOpenExchange,
DaemonStopExchange,
HandshakeExchange,
ConnectionQueryExchange,
AskpassExchange,
TerminalWaitExchange,
TerminalLaunchExchange, DaemonVersionExchange;
TerminalLaunchExchange,
DaemonVersionExchange;
}