aboutsummaryrefslogtreecommitdiffstats
path: root/example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example.cpp')
-rw-r--r--example.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/example.cpp b/example.cpp
index 54efccf..16116a8 100644
--- a/example.cpp
+++ b/example.cpp
@@ -1,4 +1,5 @@
#include "flask.h"
+#include "json.h"
#include <sstream>
@@ -14,7 +15,9 @@ int main()
FLASK_ROUTE(app, "/json")
([]{
- return "{\"message\":\"Hello, World!\"}";
+ flask::json::wvalue x;
+ x["message"] = "Hello, World!";
+ return x;
});
FLASK_ROUTE(app, "/about")