13 lines
261 B
Swift
13 lines
261 B
Swift
import Foundation
|
|
|
|
// Convenience for locating package resources externally
|
|
public enum ViewsPackage {
|
|
public static var bundleURL: URL {
|
|
Bundle.module.bundleURL
|
|
}
|
|
|
|
public static var resourceURL: URL {
|
|
Bundle.module.resourceURL ?? bundleURL
|
|
}
|
|
}
|