My Project
fileConfig.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-CPP-500-PAR-5-1-rtype-martin.vanaud
4 ** File description:
5 ** fileConfig
6 */
7 
8 #ifndef FILECONFIG_HPP_
9  #define FILECONFIG_HPP_
10 
11  #include <nlohmann/json.hpp>
12 
13 nlohmann::json getJsonData(std::string const &filepath);
14 
15 
16 #endif /* !FILECONFIG_HPP_ */