blob: 8ec60876ccb679d4a51725d527153d65e1054762 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Diagnostics.CodeAnalysis;
namespace GodotTools.IdeMessaging
{
public interface IHandshake
{
string GetHandshakeLine(string identity);
bool IsValidPeerHandshake(string handshake, [NotNullWhen(true)] out string? identity, ILogger logger);
}
}
|