I've written a RowDecoder, which lets you easily convert from a PostgresClientKit.Row to a Codable struct, like
struct User: Codable {
let id: Int
let name: String
}
It's working well in my project, and if you think it'd be good to add to this library, let me know and I would be happy to clean it up and pull request it.
I've written a RowDecoder, which lets you easily convert from a
PostgresClientKit.Rowto a Codable struct, likeIt's working well in my project, and if you think it'd be good to add to this library, let me know and I would be happy to clean it up and pull request it.