diff --git a/docs/src/usage/go.md b/docs/src/usage/go.md index 479d6a0..4cc5cce 100644 --- a/docs/src/usage/go.md +++ b/docs/src/usage/go.md @@ -4,11 +4,17 @@ The Go version of Biscuit can be found on [Github](https://github.com/eclipse-bi ## Install +With Go get: + +``` + go get github.com/biscuit-auth/biscuit-go/v2@v2 +``` + In `go.mod`: ``` require( - github.com/eclipse-biscuit/biscuit-go v2.2.0 + github.com/biscuit-auth/biscuit-go/v2 v2.2.0 ) ``` @@ -138,4 +144,4 @@ func Query(authorizer biscuit.Authorizer) (biscuit.FactSet, error) { return authorizer.Query(rule) } -``` \ No newline at end of file +```