LinkMessage

- Added new message type
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-09 21:27:44 +02:00
parent 31679abda4
commit 3d352cab6e
1 changed files with 17 additions and 0 deletions

17
source/davinci/s2s/link.d Normal file
View File

@ -0,0 +1,17 @@
module davinci.s2s.link;
import davinci.base;
import msgpack;
public final class LinkRequest : Command
{
// TODO: Put authentication details here
private string serverName; // Name of server wanting to link
private string signature; // TODO: Signature to check for signing
this()
{
registerClass!(typeof(this));
}
}