Created
March 30, 2018 18:08
-
-
Save iamcrypticcoder/0895192f768cfe03dddc9e37d66a79ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
protocol Connection { | |
func makeReady() -> Void | |
func isReady() -> Bool | |
func sendPacket(_ data: String) -> Void | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment