blob: 1202cf2a95303e628887a903c410b121599110d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Go
The API that has no additional wrapper code is the Go API. To begin to use the Go library in a Go client you first need to import it:
```go
import "github.com/eduvpn/eduvpn-common"
```
This brings the library into scope using the eduvpn-common prefix.
The documentation to then use this API is online at [pkg.go.dev](https://pkg.go.dev/github.com/eduvpn/eduvpn-common).
[We also provide an example](./example.md).
|