droplet 1.3.0
A multipurpose Discord bot with the hacker in mind
Loading...
Searching...
No Matches
RestApi.hpp
Go to the documentation of this file.
1/*
2 * (c) Copyright erarnitox.de - All rights reserved
3 * Author: Erarnitox <david@erarnitox.de>
4 *
5 * License: MIT License
6 *
7 * Description: This Library combines all the
8 * fuctionality of the bot into a static library
9 * that can be used by the main binary and also
10 * the unit_test binary.
11 *
12 * Documentation: https://droplet.erarnitox.de/doxygen/bot_library
13 */
14
15#pragma once
16
17#include <string>
18
19//-----------------------------------------------------
20//
21//-----------------------------------------------------
22class RestApi {
23 public:
24 const static ushort port;
25 const static bool ssl_enabled;
26 static auto start() -> void;
27};
Definition RestApi.hpp:22
static const ushort port
Definition RestApi.hpp:13
static const bool ssl_enabled
Definition RestApi.hpp:12
static auto start() -> void
Definition RestApi.cpp:15