summaryrefslogtreecommitdiff
path: root/web/src/config.hpp
blob: 11f8b044e8ce3b17d85689e517347ccab03eaac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <optional>
#include <string>
namespace botweb {
  struct Configuration {
      std::string contact_name = "some guy", contact_url = "#";
  };

  std::optional<Configuration> parse_configuration_from_file(
      const std::string &file_path);
}