12 lines
216 B
C++
12 lines
216 B
C++
#ifndef __SHADOWRUNAPI_H__
|
|
#define __SHADOWRUNAPI_H__
|
|
|
|
#include "crow/app.h"
|
|
#include "crow/middlewares/cors.h"
|
|
|
|
namespace shadowrun {
|
|
|
|
void initApi(crow::App<crow::CORSHandler>& app);
|
|
|
|
}
|
|
#endif // __SHADOWRUNAPI_H__
|