paxos/src/config/parse.hh

13 lines
193 B
C++
Raw Normal View History

2020-05-05 12:11:54 +00:00
#pragma once
#include <string>
#include "misc/json.hh"
namespace paxos
{
[[noreturn]] void error_and_exit(int code, const std::string& error);
2020-05-06 16:51:50 +00:00
} // namespace paxos
2020-05-05 12:11:54 +00:00
#include "parse.hxx"