···11import app/web
22-import gleam/dynamic.{Dynamic}
22+import gleam/dynamic.{type Dynamic}
33import gleam/http.{Post}
44import gleam/json
55import gleam/result
66-import wisp.{Request, Response}
66+import wisp.{type Request, type Response}
7788// This type is going to be parsed and decoded from the request body.
99pub type Person {
···11-import wisp.{Request, Response}
11+import wisp.{type Request, type Response}
22import app/web
3344// Wisp has functions for logging messages using the BEAM logger.
···22version = "1.0.0"
33description = "A silly little database to be used in the examples"
44licences = ["Apache-2.0"]
55+gleam = ">= 0.32.0"
5667[dependencies]
78gleam_stdlib = "~> 0.30"