Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
client.cpp 168 B
#include "client.h"

#include <memory>

namespace {
auto client_ = std::make_shared<mtx::http::Client>();
}

mtx::http::Client& http::client() {return *client_.get();}