mg-bot-api-client-go/v1/client_test.go

15 lines
159 B
Go
Raw Normal View History

2018-08-03 18:11:37 +03:00
package v1
import (
"os"
)
var (
mgURL = os.Getenv("MG_URL")
mgToken = os.Getenv("MG_TOKEN")
)
func client() *MgClient {
return New(mgURL, mgToken)
}