RoutesCommand

Displays all routes registered to the Application’s Router in an ASCII-formatted table.

RoutesCommand.swift:17
final class RoutesCommand
$ swift run Run routes
+------+------------------+
| GET  | /search          |
+------+------------------+
| GET  | /hash/:string    |
+------+------------------+

A colon preceding a path component indicates a variable parameter. A colon with no text following is a parameter whose result will be discarded.

The path will be displayed with the same syntax that is used to register a route.