gdpm/examples/rest_api/main.cpp
David J. Allen 8b1f1374d8 More refactoring and bug fixes
- Added `libhttp` and `librest_api` targets to CMakeLists.txt
- Added examples for `libhttp` and `librest_api` in examples directory
- Added `cache` and `add` commands
- Added documentation for `libhttp` and `librest_api`
- Added all available HTTP response codes to REST API
- Changed how `bin/compile.sh` works (must supply args to build)
2023-05-27 11:28:58 -06:00

8 lines
No EOL
123 B
C++

/*! Example using the `libgdpm-restapi` library */
#include "rest_api.hpp"
int main(int argc, char **argv){
return 0;
}