Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created April 27, 2020 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitomad/325709cd94657e19f30e2e76b66543f9 to your computer and use it in GitHub Desktop.
Save fitomad/325709cd94657e19f30e2e76b66543f9 to your computer and use it in GitHub Desktop.
// Directorio raiz del sitio web
app.get { req in
...
}
// Se corresponde con el recurso /rooms
app.get("rooms") { req -> String in
...
}
// Es el recurso /rooms/:name
// :name es una variable que recoge lo que haya
// escrito el usuario en su lugar, como por ejemplo
// /rooms/vapos
// /rooms/swift
app.get("rooms", ":name") { req -> String in
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment