Created
December 19, 2017 16:54
-
-
Save luisburgos/0e95c6053271612ad8ce8db83c5e43bc 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
// | |
// Parser.swift | |
// YellowPod | |
// | |
// Created by Luis Burgos on 11/26/17. | |
// Copyright © 2017 YellowPod. All rights reserved. | |
// | |
import Foundation | |
import SwiftyJSON | |
protocol Parser { | |
func parse(_ json: JSON) throws -> [APIModel]? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment