initial import, barely working

This commit is contained in:
Michael Muré
2025-03-12 14:13:31 +01:00
commit 581b06738c
13 changed files with 723 additions and 0 deletions

18
go.mod Normal file
View File

@@ -0,0 +1,18 @@
module github.com/INFURA/go-did
go 1.23
require (
github.com/multiformats/go-multibase v0.2.0
github.com/multiformats/go-varint v0.0.7
github.com/stretchr/testify v1.10.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mr-tron/base58 v1.1.0 // indirect
github.com/multiformats/go-base32 v0.0.3 // indirect
github.com/multiformats/go-base36 v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)