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

14 lines
203 B
Swift

//
// SpotPriceFetcher.swift
// SatsPrice
//
// Created by Terry Yiu on 2/19/24.
//
import Foundation
import BigDecimal
protocol SpotPriceFetcher {
func btcToUsd() async throws -> BigDecimal?
}