mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-30 21:51:33 +00:00
10 lines
138 B
C
10 lines
138 B
C
#ifndef __JSON__H__
|
|
#define __JSON__H__
|
|
|
|
#include "nlohmann/json.hpp"
|
|
|
|
namespace {
|
|
using json = nlohmann::json;
|
|
}
|
|
|
|
#endif // !__JSON__H__
|