diff --git a/include/data.hpp b/include/data.hpp index 3840bd3..3328d67 100644 --- a/include/data.hpp +++ b/include/data.hpp @@ -11,4 +11,5 @@ class data : public json { public: data(); + json process(const json &); }; diff --git a/src/data.cpp b/src/data.cpp index 704e42d..55fe337 100644 --- a/src/data.cpp +++ b/src/data.cpp @@ -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}}; +} \ No newline at end of file