1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-10-01 08:02:49 +02:00
Files

12 lines
321 B
C#

namespace Phantom.Utils.Rpc.Runtime.Client;
public interface IRpcClientHandshake {
Task Perform(RpcStream stream, CancellationToken cancellationToken);
sealed record NoOp : IRpcClientHandshake {
public Task Perform(RpcStream stream, CancellationToken cancellationToken) {
return Task.CompletedTask;
}
}
}