Skip to content

Instantly share code, notes, and snippets.

@laiso
Created July 17, 2020 18:44
Show Gist options
  • Save laiso/3336516dc354853b49cfa58ba89a2e8e to your computer and use it in GitHub Desktop.
Save laiso/3336516dc354853b49cfa58ba89a2e8e to your computer and use it in GitHub Desktop.
VaporでJSONレスポンスを返す #CodePiece
import Vapor
struct MyResponse: Content {
let name: String
}
func routes(_ app: Application) throws {
app.get { req in
return MyResponse(name: "popo")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment