aboutsummaryrefslogtreecommitdiffstats
path: root/example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example.cpp')
-rw-r--r--example.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/example.cpp b/example.cpp
index 9ecf0af..9b36da5 100644
--- a/example.cpp
+++ b/example.cpp
@@ -6,7 +6,7 @@ int main()
{
flask::Flask app;
- app.route("/")
+ FLASK_ROUTE(app, "/")
.name("hello")
([]{
return "Hello World!";