Project template updates (#25)

* Project template updates

* More changes

* run swiftformat
This commit is contained in:
Adam Fowler
2024-03-08 12:04:49 +00:00
committed by GitHub
parent f5177888f9
commit f029081b61
13 changed files with 50 additions and 68 deletions

View File

@@ -22,7 +22,7 @@ import XCTest
public struct AnyDecodable: Decodable {
public let value: Any
public init<T>(_ value: T) {
public init(_ value: some Any) {
self.value = value
}
}