🧚 A practical web framework for Gleam

Update docs

+3 -5
+3 -5
examples/5-using-a-database/README.md
··· 29 29 30 30 ### `app/router` module 31 31 32 - The `handle_request` function has been updated to handle multiple routes: 33 - - `GET /people` returns a list of all the entities in the database. 34 - - `POST /people` reads JSON data from the request body and saves it in the database. 35 - - `GET /people/:id` returns the entity with the given id. 32 + The `handle_request` function has been updated to route requests to functions in 33 + the new `app/web/people` module. 36 34 37 35 ### `app/web/people` module 38 36 39 37 This module has been created to hold all the functions for working with the 40 - "people" resource, including their request handlers. 38 + "people" feature, including their request handlers. 41 39 42 40 ### `app_test` module 43 41