You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/service/config.hpp

27 lines
507 B
C++

#ifndef LLARP_SERVICE_CONFIG_HPP
#define LLARP_SERVICE_CONFIG_HPP
#include <util/string_view.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(string_view fname);
};
} // namespace service
} // namespace llarp
#endif