summaryrefslogtreecommitdiff
path: root/docs/src/api/go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-18 18:29:10 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-18 18:29:10 +0200
commit6aced56a28fa52e4796aa1aa139e4323b4154aca (patch)
tree56bf7af557317b553c6c30db2ec8d20090b6336d /docs/src/api/go
parentcc057e07579f290eb1db8bdf348cb2e5ba760ab3 (diff)
Client: Move to its own package
Diffstat (limited to 'docs/src/api/go')
-rw-r--r--docs/src/api/go/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/api/go/README.md b/docs/src/api/go/README.md
index 1202cf2..2b71f99 100644
--- a/docs/src/api/go/README.md
+++ b/docs/src/api/go/README.md
@@ -2,11 +2,11 @@
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"
+import "github.com/eduvpn/eduvpn-common/client"
```
-This brings the library into scope using the eduvpn-common prefix.
+This brings the client library into scope using the client prefix.
-The documentation to then use this API is online at [pkg.go.dev](https://pkg.go.dev/github.com/eduvpn/eduvpn-common).
+The documentation to then use this API and the rest is online at [pkg.go.dev](https://pkg.go.dev/github.com/eduvpn/eduvpn-common).
[We also provide an example](./example.md).