Created
April 9, 2020 12:55
-
-
Save cweinberger/56a3677ceb7d02f1fdd51196bd03efac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func boot(routes: RoutesBuilder) throws { | |
routes.get("", use: getBooks) | |
routes.get(":bookID", use: getBook) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment