This file contains hidden or 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
protocol SchoolServiceDelegate: AnyObject { | |
func schoolServiceDidFinishFetching(_ service: SchoolService) | |
} | |
class SchoolService { | |
weak var delegate: SchoolServiceDelegate? | |
private(set) var nycHSList: [NYCHighSchool] = [] | |
func fetchHighschoolStuff() { |
This file contains hidden or 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
github "luximetr/AnyFormatKit" ~> 0.1.1 |