···29293030### `app/router` module
31313232-The `handle_request` function has been updated to handle multiple routes:
3333-- `GET /people` returns a list of all the entities in the database.
3434-- `POST /people` reads JSON data from the request body and saves it in the database.
3535-- `GET /people/:id` returns the entity with the given id.
3232+The `handle_request` function has been updated to route requests to functions in
3333+the new `app/web/people` module.
36343735### `app/web/people` module
38363937This module has been created to hold all the functions for working with the
4040-"people" resource, including their request handlers.
3838+"people" feature, including their request handlers.
41394240### `app_test` module
4341