Initial commit

This commit is contained in:
2024-02-19 01:58:22 -05:00
commit adac2bcd64
40 changed files with 2164 additions and 0 deletions

View File

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