diff options
| author | Fuwn <[email protected]> | 2026-05-27 09:19:25 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-27 09:19:25 +0000 |
| commit | 63f5166e3dcba0c884f112848a4a4e7886ca1b99 (patch) | |
| tree | 3e35acf33f435c98dae1f73b73956d71e28ccd43 /src/mayu.gleam | |
| parent | build: Replace Earthfile with Dockerfile (diff) | |
| download | mayu-63f5166e3dcba0c884f112848a4a4e7886ca1b99.tar.xz mayu-63f5166e3dcba0c884f112848a4a4e7886ca1b99.zip | |
refactor: Tighten naming, drop dead paths, reject empty names
Diffstat (limited to 'src/mayu.gleam')
| -rw-r--r-- | src/mayu.gleam | 4 |
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, ) |