An Open Exchange Rates API wrapper written in Swift using Combine.
- Swift 5.1
- iOS 13.0+
Bling is available on Cocoapods. Add it to your Podfile and run pod install:
pod 'Bling'To use Bling you need to create a new instance and pass it your app id:
let bling = Bling(appId: "…")
bling.latest()
.sink(receiveCompletion: { _ in },
receiveValue: { print($0) })
.store(in: &subscriptions)Bling is released under the MIT license. See LICENSE for details