mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
24 lines
480 B
C++
24 lines
480 B
C++
#ifndef LLARP_SERVICE_CONFIG_HPP
|
|
#define LLARP_SERVICE_CONFIG_HPP
|
|
#include <list>
|
|
#include <string>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
struct Config
|
|
{
|
|
using section_values_t =
|
|
std::list< std::pair< std::string, std::string > >;
|
|
using section_t = std::pair< std::string, section_values_t >;
|
|
|
|
std::list< section_t > services;
|
|
|
|
bool
|
|
Load(const std::string& fname);
|
|
};
|
|
} // namespace service
|
|
} // namespace llarp
|
|
#endif
|