Skip to content

Commit

Permalink
Make Kucoin and Binance authorizing public
Browse files Browse the repository at this point in the history
  • Loading branch information
backslash-f committed Dec 31, 2023
1 parent 9cc5e28 commit 60ac89b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/SwiftTrader/Model/Binance/BinanceAuth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public protocol BinanceAuthorizing {
/// Holds data required to authenticate requests against Binance APIs.
public struct BinanceAuth {

let spot: BinanceAuthorizing
public let spot: BinanceAuthorizing

public init(spot: BinanceAuthorizing) {
self.spot = spot
Expand Down
4 changes: 2 additions & 2 deletions Sources/SwiftTrader/Model/Kucoin/KucoinAuth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public protocol KucoinAuthorizing {
/// Holds data required to authenticate requests against Kucoin APIs.
public struct KucoinAuth {

let spot: KucoinAuthorizing
let futures: KucoinAuthorizing
public let spot: KucoinAuthorizing
public let futures: KucoinAuthorizing

public init(spot: KucoinAuthorizing, futures: KucoinAuthorizing) {
self.spot = spot
Expand Down

0 comments on commit 60ac89b

Please sign in to comment.