[31m[1mERROR[0m[39m: 
  [31m×[0m Route paths must either be empty or begin with a forward slash, `/`.
  [31m│[0m `api` is not empty and it doesn't begin with a `/`.
  [31m│[0m
  [31m│[0m     ╭─[[36;1;4msrc/lib.rs[0m:12:1]
  [31m│[0m  [2m12[0m │     // If the path is not empty, it *must* start with a `/`
  [31m│[0m  [2m13[0m │     bp.route(GET, "api", f!(crate::handler));
  [31m│[0m     · [35;1m                  ──┬──[0m
  [31m│[0m     ·                     [35;1m╰── The path missing a leading '/'[0m
  [31m│[0m  [2m14[0m │     bp
  [31m│[0m     ╰────
  [31m│[0m [36m  help: [0mAdd a '/' at the beginning of the route path to fix this error: use
  [31m│[0m         `/api` instead of `api`.