Skip to content

Instantly share code, notes, and snippets.

@iamcrypticcoder
Created March 30, 2018 18:08
Show Gist options
  • Save iamcrypticcoder/0895192f768cfe03dddc9e37d66a79ec to your computer and use it in GitHub Desktop.
Save iamcrypticcoder/0895192f768cfe03dddc9e37d66a79ec to your computer and use it in GitHub Desktop.
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