Files
sats-price/SatsPrice/SpotPriceSource.swift
2024-02-20 22:30:10 -05:00

23 lines
372 B
Swift

//
// SpotPriceSource.swift
// SatsPrice
//
// Created by Terry Yiu on 2/20/24.
//
import Foundation
enum SpotPriceSource: CaseIterable, CustomStringConvertible {
case coinbase
case coingecko
var description: String {
switch self {
case .coinbase:
"Coinbase"
case .coingecko:
"CoinGecko"
}
}
}