From 5a3654a68fe7b21715eb1af6101979a50fb26a0f Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 18 Jan 2025 00:18:11 +0100 Subject: [PATCH] Implemented the BundleServicing protocol in the library target. --- Library/Sources/Protocols/BundleServicing.swift | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Library/Sources/Protocols/BundleServicing.swift 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? + +}