Skip to content

You're viewing documentation for a pre-release version. View the latest stable version

Instance Method

routesASCIITable()

Returns all routes registered to the Application’s Router in an ASCII-formatted table String.
func routesASCIITable() -> String

Discussion

+------+------------------+
| 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.