Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 489 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 489 Bytes

CoinGecko Swift

Swift wrapper for the CoinGecko API.

Usage

let client = CoinGeckoClient()
let ping = Resources.ping { (result: Result<Pong, CoinGeckoError>) in
    guard case .success(let pong) = result else { return }
    print(pong.gecko_says) //(V3) To the Moon!
}
client.load(ping)