diff options
Diffstat (limited to 'web/bubblegum/examples/hello.nix')
-rw-r--r-- | web/bubblegum/examples/hello.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/web/bubblegum/examples/hello.nix b/web/bubblegum/examples/hello.nix index db04d4082371..bd4891f7d66d 100644 --- a/web/bubblegum/examples/hello.nix +++ b/web/bubblegum/examples/hello.nix @@ -87,6 +87,8 @@ let response = routes."${pathInfo}" or notFound; in - respond response.status { - "Content-type" = "text/html"; - } (template response) +respond response.status +{ + "Content-type" = "text/html"; +} + (template response) |