10 lines
196 B
Swift
10 lines
196 B
Swift
import Foundation
|
|
|
|
public protocol BundleServicing {
|
|
|
|
// MARK: Functions
|
|
|
|
func url(forResource name: String?, withExtension ext: String?, subdirectory subpath: String?) -> URL?
|
|
|
|
}
|