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

#include <rpc/client.h>

#include <hwd/internal.h>


rpc::client & get_client()
{
	static rpc::client c(hwd::internal::host(), hwd::internal::port());
	return c;
}