Initial commit
This commit is contained in:
17
httpserver/httpserver.cpp
Normal file
17
httpserver/httpserver.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#define CPPHTTPLIB_OPENSSL_SUPPORT
|
||||
#include "ground_lib.h"
|
||||
#include "libraries/httplib.h"
|
||||
|
||||
GroundValue startHttpServer(GroundValue* args, int arg_count) {
|
||||
VALIDATE_ARGS_1(GROUND_INT);
|
||||
|
||||
}
|
||||
|
||||
GROUND_LIBRARY_INTERFACE()
|
||||
|
||||
GROUND_LIBRARY_INIT()
|
||||
REGISTER_GROUND_FUNCTION(startHttpServer);
|
||||
GROUND_LIBRARY_INIT_END()
|
||||
|
||||
GROUND_LIBRARY_CLEANUP()
|
||||
GROUND_LIBRARY_CLEANUP_END()
|
||||
Reference in New Issue
Block a user