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