From 8bc446ca68c5d8249ac5749495868e5c5d3731e7 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Fri, 24 Jan 2025 23:52:30 +0100 Subject: [PATCH] Added the "resourcePath" property to the Bundleable protocol in the library target. --- Library/Sources/Public/Protocols/Bundleable.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Library/Sources/Public/Protocols/Bundleable.swift b/Library/Sources/Public/Protocols/Bundleable.swift index 308682e..e6fe719 100644 --- a/Library/Sources/Public/Protocols/Bundleable.swift +++ b/Library/Sources/Public/Protocols/Bundleable.swift @@ -1,6 +1,10 @@ import Foundation public protocol Bundleable { + + // MARK: Computed + + var resourcePath: String? { get } // MARK: Functions