droplet 1.1.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
19class RestApi {
20 public:
21 const static ushort port;
22 const static bool ssl_enabled;
23 static auto start() -> void;
24};
Definition RestApi.hpp:19
static const ushort port
Definition RestApi.hpp:39
static const bool ssl_enabled
Definition RestApi.hpp:38
static auto start() -> void
this is the entry point of the binary that will start the bot
Definition RestApi.cpp:130