mirror of
https://github.com/retailcrm/api-client-go.git
synced 2024-11-22 04:46:03 +03:00
13 lines
202 B
Go
13 lines
202 B
Go
package retailcrm
|
|
|
|
import (
|
|
"github.com/retailcrm/api-client-go/v5"
|
|
)
|
|
|
|
// Version5 API client for v5
|
|
func Version5(url string, key string) *v5.Client {
|
|
var client = v5.New(url, key)
|
|
|
|
return client
|
|
}
|