main.swift 357 B

1234567891011121314151617181920
  1. //
  2. // main.swift
  3. // SwifterOSX
  4. // Copyright (c) 2014 Damian Kołakowski. All rights reserved.
  5. //
  6. import Foundation
  7. let server = demoServer(NSBundle.mainBundle().resourcePath)
  8. do {
  9. try server.start(9080)
  10. print("Server started. Try a connection now...")
  11. NSRunLoop.mainRunLoop().run()
  12. } catch {
  13. print("Server start error: \(error)")
  14. }