All Downloads are FREE. Search and download functionalities are using the official Maven repository.

archetype-resources.Sources.main.swift Maven / Gradle / Ivy

There is a newer version: 2.2.197
Show newest version
import Swifter
import Foundation

let server = HttpServer()


server["/"] = { request in
    return .OK(.Html("Hello from the fabric8 swift example"))
}
try server.start(8080)
print("Server has started ( port = 8080 ). Try to connect now...")

while true {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy