update go-ucan, with the now spec defined container

https://github.com/ucan-wg/go-ucan/blob/main/pkg/container/SPEC.md
This commit is contained in:
Michael Muré
2025-01-09 13:34:53 +01:00
committed by Michael Muré
parent f18ae547ab
commit 09c8815755
2 changed files with 4 additions and 4 deletions

View File

@@ -36,10 +36,10 @@ func ExampleNewClient() {
handleError(err)
// this container holds the invocation and all the delegation proofs
b64, err := cont.ToCborBase64()
b64, err := cont.ToBase64StdPadding()
handleError(err)
fmt.Println(string(b64))
fmt.Println(b64)
}
func handleError(err error) {