10 lines
111 B
Swift
10 lines
111 B
Swift
import Foundation
|
|
|
|
|
|
public protocol LoaderProtocol
|
|
{
|
|
associatedtype T: Resource
|
|
|
|
func load(url: URL) -> T?
|
|
}
|