summaryrefslogtreecommitdiff
path: root/server/src/client.cpp
blob: 858b230c72200a7c199dd45e6fc363d2318e4776 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "client.h"

client::client(std::string &client_auth_token) : auth_token(client_auth_token)
{
	//ctor
}

client::~client()
{
	//dtor
}