40 Json read_json_from_stdin();
44 Json read_json(
const std::string& filepath_or_stdin);
46 Json read_json_with_interpolation(
const std::string& filepath_or_stdin,
49 Conf read_conf_from_file(
const char* filepath);
51 Conf read_conf_from_stdin();
53 Conf read_conf_from_file(
const std::string& filepath);
55 Conf read_conf(
const std::string& filepath_or_stdin);
57 Conf read_conf_with_interpolation(
const std::string& filepath_or_stdin,
63 std::string
indent_string(std::string s,
const std::string& indent =
" ");
65 void pretty_print(
const ConfError& e, std::ostream& os);
67 void pretty_print(
const SchemaError& e, std::ostream& os);
Definition: server_test.cpp:71
nlohmann::json Json
Definition: fable_fwd.hpp:35
std::string indent_string(std::string s, const std::string &indent=" ")
Definition: utility.cpp:104
Json read_json_from_file(const char *filepath)
Definition: utility.cpp:36