Moved the protocol conformances on extensions to the Conformances file in the library target.

This commit is contained in:
Javier Cicchelli 2025-02-22 09:35:47 +01:00
parent efab608220
commit c1b3861bef
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,9 @@
import Foundation import Foundation
// MARK: - Bundleable
extension Bundle: Bundleable {}
// MARK: - Processable // MARK: - Processable
extension Process: Processable {} extension Process: Processable {}

View File

@ -1,5 +0,0 @@
import Foundation
// MARK: - Bundleable
extension Bundle: Bundleable {}