Browse Source

Fixed HttpServerIODelegate to public and class

Daniel Bauke 9 năm trước cách đây
mục cha
commit
b80064107d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Sources/HttpServerIO.swift

+ 1 - 1
Sources/HttpServerIO.swift

@@ -8,7 +8,7 @@
 import Foundation
 import Foundation
 import Dispatch
 import Dispatch
 
 
-protocol HttpServerIODelegate {
+public protocol HttpServerIODelegate: class {
     func socketConnectionReceived(_ socket: Socket)
     func socketConnectionReceived(_ socket: Socket)
 }
 }