Implemented the BundleServicing protocol in the library target.

This commit is contained in:
Javier Cicchelli 2025-01-18 00:18:11 +01:00
parent 6720464026
commit 5a3654a68f

View File

@ -0,0 +1,9 @@
import Foundation
public protocol BundleServicing {
// MARK: Functions
func url(forResource name: String?, withExtension ext: String?, subdirectory subpath: String?) -> URL?
}