diff --git a/Library/Sources/Protocols/BundleServicing.swift b/Library/Sources/Protocols/BundleServicing.swift new file mode 100644 index 0000000..f5a4734 --- /dev/null +++ b/Library/Sources/Protocols/BundleServicing.swift @@ -0,0 +1,9 @@ +import Foundation + +public protocol BundleServicing { + + // MARK: Functions + + func url(forResource name: String?, withExtension ext: String?, subdirectory subpath: String?) -> URL? + +}