23 lines
372 B
Swift
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"
|
|
}
|
|
}
|
|
}
|