PlainTextController.swift 225 B

12345678910111213141516
  1. //
  2. // PlainTextController.swift
  3. // App
  4. //
  5. // Created by Gopal Sharma on 7/29/18.
  6. //
  7. import Vapor
  8. final class PlainTextController {
  9. func get(_ req: Request) throws -> String {
  10. return "Hello, world!"
  11. }
  12. }