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
config.hpp
Go to the documentation of this file.
1#pragma once
2#include <filesystem>
3
4namespace dcn::config
5{
6 struct Config
7 {
8 std::filesystem::path bin_path;
9 std::filesystem::path logs_path;
10 std::filesystem::path resources_path;
11 std::filesystem::path storage_path;
12 };
13}
Definition config.hpp:5
Definition config.hpp:7
std::filesystem::path bin_path
Definition config.hpp:8
std::filesystem::path storage_path
Definition config.hpp:11
std::filesystem::path logs_path
Definition config.hpp:9
std::filesystem::path resources_path
Definition config.hpp:10