2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2017-05-16 20:46:45 +02:00
|
|
|
#pragma once
|
2017-04-06 01:06:42 +02:00
|
|
|
|
2018-06-09 15:03:14 +02:00
|
|
|
#include <mtxclient/http/client.hpp>
|
2018-05-16 19:40:42 +02:00
|
|
|
|
2018-05-08 17:43:56 +02:00
|
|
|
namespace http {
|
2018-06-09 15:03:14 +02:00
|
|
|
mtx::http::Client *
|
2018-05-08 17:43:56 +02:00
|
|
|
client();
|
2018-06-10 19:03:45 +02:00
|
|
|
|
|
|
|
bool
|
|
|
|
is_logged_in();
|
2018-05-16 19:40:42 +02:00
|
|
|
|
2018-06-09 15:03:14 +02:00
|
|
|
//! Initialize the http module
|
|
|
|
void
|
|
|
|
init();
|
2018-05-16 19:40:42 +02:00
|
|
|
}
|