Skip to content

Instantly share code, notes, and snippets.

@stfalconaleks
Created October 20, 2017 14:46
Show Gist options
  • Save stfalconaleks/e98e36b140b86425dfc42a06f8de68de to your computer and use it in GitHub Desktop.
Save stfalconaleks/e98e36b140b86425dfc42a06f8de68de to your computer and use it in GitHub Desktop.
import Vapor
let drop = Droplet()
drop.get("hello") { request in
if let name = request.data["name"]?.string {
return try drop.view.make("hello", ["name": name])
}
return try drop.view.make("hello", ["name": "no name"])
}
drop.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment