HttpHandlers.swift 363 B

12345678910111213141516171819202122232425
  1. //
  2. // Handlers.swift
  3. // Swifter
  4. //
  5. // Copyright (c) 2014-2016 Damian Kołakowski. All rights reserved.
  6. //
  7. import Foundation
  8. public class HttpHandlers {
  9. public enum HtmlNode {
  10. case body
  11. case head
  12. }
  13. // public class func html(directoryPath: String) -> (HttpRequest -> HttpResponse) {
  14. //
  15. //
  16. // }
  17. }