Decentralised Art Server
High-performance C++ backend that exposes HTML interface and a secure REST API for managing Performative Transactions entities
 
Loading...
Searching...
No Matches
decentralised_art.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <format>
4
5#include "native.h"
6#include <asio.hpp>
7#include <asio/experimental/awaitable_operators.hpp>
8using namespace asio::experimental::awaitable_operators;
9
10#include <spdlog/spdlog.h>
11#include <spdlog/sinks/basic_file_sink.h>
12#include <spdlog/sinks/stdout_color_sinks.h>
13#include <absl/container/flat_hash_map.h>
14#include <absl/container/flat_hash_set.h>
15
16#include "cmd.hpp"
17#include "server.hpp"
18#include "http.hpp"
19#include "session.hpp"
20#include "evm.hpp"
21#include "pt.hpp"
22#include "file.hpp"
23#include "api.hpp"
24#include "auth.hpp"
25#include "utils.hpp"
26#include "version.hpp"
27#include "loader.hpp"
28
29namespace dcn
30{
31 const asio::ip::port_type DEFAULT_PORT = 54321;
32 const asio::ip::port_type DEFAULT_TLS_PORT = 54322;
33}
Definition decentralised_art.hpp:30
const asio::ip::port_type DEFAULT_PORT
Definition decentralised_art.hpp:31
const asio::ip::port_type DEFAULT_TLS_PORT
Definition decentralised_art.hpp:32