14 lines
326 B
Markdown
14 lines
326 B
Markdown
# Go SDK
|
|
|
|
```bash
|
|
go get git.datacoria.com/Phylex/production-as213905/as213905-sdk/go
|
|
```
|
|
|
|
```go
|
|
client := as213905.New(os.Getenv("AS213905_API_KEY"))
|
|
org, err := client.Organization(context.Background())
|
|
```
|
|
|
|
The client is safe for concurrent use. Use `NewWithOptions` to supply a custom
|
|
base URL, HTTP client or user agent.
|