summaryrefslogtreecommitdiffstats
path: root/src/instance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/instance.cpp')
-rw-r--r--src/instance.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/instance.cpp b/src/instance.cpp
index fb8db81..f410b27 100644
--- a/src/instance.cpp
+++ b/src/instance.cpp
@@ -31,6 +31,14 @@ using std::regex;
using std::regex_search;
using std::smatch;
+Instance::Instance(const string_view hostname, const string_view access_token)
+ : _hostname{hostname}
+ , _baseuri{"https://" + _hostname}
+ , _max_chars{0}
+{
+ set_access_token(access_token);
+}
+
uint64_t Instance::get_max_chars() noexcept
{
constexpr uint64_t default_max_chars{500};