馃 A practical web framework for Gleam
README.md

Wisp Example: Working with files#

gleam run   # Run the server
gleam test  # Run the tests

This example shows how to accept file uploads and allow users to download files.

This example is based off of the "working with form data" example, so read that first. The additions are detailed here and commented in the code.

app/router module#

The handle_request function has been updated to upload and download files.

app_test module#

Tests have been added that upload and download files to verify the behaviour.

Other files#

No changes have been made to the other files.