mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
15 lines
168 B
C++
15 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();
|
|
}
|