@ -11,4 +11,5 @@ class data : public json {
public:
data();
json process(const json &);
};
@ -41,3 +41,7 @@ void data::create_data_directory() {
}
fs::path data::get_store_path() { return get_data_path() / "store.json"; }
nlohmann::json data::process(const nlohmann::json &) {
return {{"success", true}};