mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
f250ad7b40
add rw locks usage
10 lines
172 B
Swift
10 lines
172 B
Swift
// Copyright 2018 Yandex LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
import Base
|
|
|
|
public protocol LocalImageProviding {
|
|
func localImage(for url: URL) -> ImageHolder?
|
|
}
|