Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
filinvadim committed Aug 28, 2023
1 parent 9b7a07f commit 8a65f90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ the duplex protocols using various types of clients.
### Crypto exchange pseudocode examples

* Binance
```
```go
func BinanceStream(key, secret string) (err error) {
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, syscall.SIGTERM, syscall.SIGINT)
Expand Down Expand Up @@ -101,7 +101,7 @@ func BinanceStream(key, secret string) (err error) {
}
```
* Huobi
```
```go
func HuobiTradesSubscribe(key, secret string) (err error) {
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, syscall.SIGTERM, syscall.SIGINT)
Expand Down Expand Up @@ -200,7 +200,7 @@ func HuobiTradesSubscribe(key, secret string) (err error) {
}
```
* Okex
```
```go
func OkexOrdersSubscribe(key, secret, pass string) (err error) {
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, syscall.SIGTERM, syscall.SIGINT)
Expand Down

0 comments on commit 8a65f90

Please sign in to comment.