From 1b62cbf35e3cb1d007118d83643545b7fe1fb6eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20R=C3=A5gstad?= Date: Sat, 30 Sep 2023 10:52:30 +0200 Subject: [PATCH] Update index.webx --- examples/todo/webx/index.webx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/todo/webx/index.webx b/examples/todo/webx/index.webx index 15a815b..3341d99 100644 --- a/examples/todo/webx/index.webx +++ b/examples/todo/webx/index.webx @@ -1,13 +1,12 @@ // test -post list/all/(data : Int)/data json(a: b, c : D) -> renderAllTodos(todos, test): out, hc() : u +post list/all/(data : Int)/data json(a: T, b : U) -> renderAllTodos(todos, test): out, hc() : u post /about/(id: Num) form(text: String) -> renderAllTodos(a, b): c { const a = [5]; if true { console.log(text); } } -> renderAllTodos(a, b, c) - // This is an example WebX todo app project. global { // Global in-memory database of todos for this example.