From b33589f58f5c398dd34d5275d15dc5ca233f7e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Corbi=C3=A8re?= Date: Mon, 13 Oct 2025 08:57:54 +0200 Subject: [PATCH] Revert the migration to eclipse-biscuit repository --- docs/src/usage/go.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 +```