Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created June 27, 2018 18:30
Show Gist options
  • Save azamsharp/75638fec31380a3b0414977c98000260 to your computer and use it in GitHub Desktop.
Save azamsharp/75638fec31380a3b0414977c98000260 to your computer and use it in GitHub Desktop.
import Vapor
/// Register your application's routes here.
public func routes(_ router: Router) throws {
router.get("movies") { request in
return "movies"
}
router.get("movies/fiction/1992") { request in
return "Fiction Movies 1992"
}
router.get("movies","fiction","1992") { request in
return "Fiction Movies 1992"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment