AuthMessage

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

17
source/davinci/c2s/auth.d Normal file
View File

@ -0,0 +1,17 @@
module davinci.c2s.auth;
import davinci.base;
import msgpack;
public final class AuthMessage : Command
{
// TODO: Put authentication details here
private string username;
private string password;
this()
{
registerClass!(typeof(this));
}
}