#ifndef FMT_JSON_H #define FMT_JSON_H #include #include "util/axc.util.h" class JsonFormatter { public: JsonFormatter(); public: std::string format(const std::string& path, const FormatterArg& arg); bool formatContent(const std::string& content, const FormatterArg& arg, std::string& outContent); bool save(const std::string& path, const std::string& content); private: std::shared_ptr logger; }; #endif // FMT_JSON_H