2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-05 00:00:14 +00:00
cointop/pkg/api/api.go

11 lines
152 B
Go
Raw Normal View History

package api
import (
cmc "github.com/miguelmota/cointop/pkg/api/cmc"
)
// NewCMC new CoinMarketCap api
func NewCMC() Interface {
return cmc.New()
}