Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
update name
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmota committed Jun 24, 2018
1 parent 347c088 commit 01b1aba
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@

> The Unofficial [CoinMarketCap](https://coinmarketcap.com/) API client for [Go](https://golang.org/).
[![License](http://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/coincircle/go-coinmarketcap/master/LICENSE.md) [![Build Status](https://travis-ci.org/coincircle/go-coinmarketcap.svg?branch=master)](https://travis-ci.org/coincircle/go-coinmarketcap) [![Go Report Card](https://goreportcard.com/badge/github.com/coincircle/go-coinmarketcap?)](https://goreportcard.com/report/github.com/coincircle/go-coinmarketcap) [![GoDoc](https://godoc.org/github.com/coincircle/go-coinmarketcap?status.svg)](https://godoc.org/github.com/coincircle/go-coinmarketcap)
[![License](http://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/miguelmota/go-coinmarketcap/master/LICENSE.md) [![Build Status](https://travis-ci.org/miguelmota/go-coinmarketcap.svg?branch=master)](https://travis-ci.org/miguelmota/go-coinmarketcap) [![Go Report Card](https://goreportcard.com/badge/github.com/miguelmota/go-coinmarketcap?)](https://goreportcard.com/report/github.com/miguelmota/go-coinmarketcap) [![GoDoc](https://godoc.org/github.com/miguelmota/go-coinmarketcap?status.svg)](https://godoc.org/github.com/miguelmota/go-coinmarketcap)

Supports the CoinMarketCap Version 2 ([V2](https://coinmarketcap.com/api)) Public API

## Documentation

[https://godoc.org/github.com/coincircle/go-coinmarketcap](https://godoc.org/github.com/coincircle/go-coinmarketcap)
[https://godoc.org/github.com/miguelmota/go-coinmarketcap](https://godoc.org/github.com/miguelmota/go-coinmarketcap)

## Install

```bash
go get -u github.com/coincircle/go-coinmarketcap
go get -u github.com/miguelmota/go-coinmarketcap
```

## Getting started
Expand All @@ -31,7 +31,7 @@ import (
"fmt"
"log"

cmc "github.com/coincircle/go-coinmarketcap"
cmc "github.com/miguelmota/go-coinmarketcap"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion coinmarketcap.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"sort"

"github.com/anaskhan96/soup"
"github.com/coincircle/go-coinmarketcap/types"
"github.com/miguelmota/go-coinmarketcap/types"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion example/all_tickers.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

cmc "github.com/coincircle/go-coinmarketcap"
cmc "github.com/miguelmota/go-coinmarketcap"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example/global_market.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

cmc "github.com/coincircle/go-coinmarketcap"
cmc "github.com/miguelmota/go-coinmarketcap"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example/price.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

cmc "github.com/coincircle/go-coinmarketcap"
cmc "github.com/miguelmota/go-coinmarketcap"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example/ticker.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

cmc "github.com/coincircle/go-coinmarketcap"
cmc "github.com/miguelmota/go-coinmarketcap"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example/ticker_graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"time"

cmc "github.com/coincircle/go-coinmarketcap"
cmc "github.com/miguelmota/go-coinmarketcap"
)

func main() {
Expand Down

0 comments on commit 01b1aba

Please sign in to comment.