16 lines
168 B
C++
16 lines
168 B
C++
#pragma once
|
|
|
|
#include <mtxclient/http/client.hpp>
|
|
|
|
namespace http {
|
|
mtx::http::Client *
|
|
client();
|
|
|
|
bool
|
|
is_logged_in();
|
|
|
|
//! Initialize the http module
|
|
void
|
|
init();
|
|
}
|