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

#include <rpc/client.h>

#include <hwd/config.h>


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