aboutsummaryrefslogtreecommitdiff
path: root/src/mayu.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'src/mayu.gleam')
-rw-r--r--src/mayu.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mayu.gleam b/src/mayu.gleam
index bb05b77..0d9fcf9 100644
--- a/src/mayu.gleam
+++ b/src/mayu.gleam
@@ -29,8 +29,8 @@ pub fn main() {
let secret_key_base = wisp.random_string(64)
let assert Ok(_) =
wisp.mist_handler(
- fn(request) {
- request.handle(request, connection, image_cache, index_html)
+ fn(incoming_request) {
+ request.handle(incoming_request, connection, image_cache, index_html)
},
secret_key_base,
)