update swift samples

This commit is contained in:
William Cheng
2022-12-27 16:00:36 +08:00
parent cfef750e18
commit 68beec623f

View File

@@ -33,6 +33,10 @@ extension Double: JSONEncodable {
func encodeToJSON() -> Any { self }
}
extension Decimal: JSONEncodable {
func encodeToJSON() -> Any { self }
}
extension String: JSONEncodable {
func encodeToJSON() -> Any { self }
}