Skip to content

Instantly share code, notes, and snippets.

protocol ClientProtocol {
/// Performs a request and retrieves a response from the server.
func get(path: String, completion: @escaping (Result<Any, ClientError>) -> Void)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment