Proof-of-concept
parent
614ae1c711
commit
cae62ce7d2
18
src/main.cpp
18
src/main.cpp
|
@ -1,5 +1,8 @@
|
||||||
#include "crow.h"
|
#include "crow.h"
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
#include "ternarytrie.h"
|
#include "ternarytrie.h"
|
||||||
|
}
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
@ -7,8 +10,19 @@ int main()
|
||||||
|
|
||||||
crow::SimpleApp app;
|
crow::SimpleApp app;
|
||||||
|
|
||||||
CROW_ROUTE(app, "/").methods(crow::HTTPMethod::Get, crow::HTTPMethod::Post)([](){
|
CROW_ROUTE(app, "/<string>").methods(crow::HTTPMethod::Post)
|
||||||
return "Hello world";
|
([trie](std::string s){
|
||||||
|
ternarytrie_add(trie, s.c_str());
|
||||||
|
|
||||||
|
return "added";
|
||||||
|
});
|
||||||
|
CROW_ROUTE(app, "/<string>").methods(crow::HTTPMethod::Get)
|
||||||
|
([trie](std::string s){
|
||||||
|
if (ternarytrie_search(trie, s.c_str())) {
|
||||||
|
return "it's here";
|
||||||
|
}
|
||||||
|
|
||||||
|
return "nope";
|
||||||
});
|
});
|
||||||
|
|
||||||
app.port(18080).multithreaded().run();
|
app.port(18080).multithreaded().run();
|
||||||
|
|
Loading…
Reference in New Issue