From f0425c59f5d6fabed240a8d3f6e85290beb0c97e Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 8 Jan 2026 15:36:12 -0500 Subject: [PATCH] chore(config): update go module path and repo config --- .github/Repo.toml | 10 ++++++++++ go.mod | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .github/Repo.toml diff --git a/.github/Repo.toml b/.github/Repo.toml new file mode 100644 index 0000000..fc8cecd --- /dev/null +++ b/.github/Repo.toml @@ -0,0 +1,10 @@ +[scopes] +ci = [".github/workflows"] +config = [".github", "go.mod", "go.sum", ".gitignore"] +docs = ["Readme.md", "crypto/Readme.md", "design.md", "LICENSE.md"] +tests = ["didtest", "verifiers/did-key/testvectors"] +core = ["*.go"] +crypto = ["crypto"] +verifiers = ["verifiers"] +controller = ["controller"] +document = ["document"] diff --git a/go.mod b/go.mod index 66e24eb..9b52b3b 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/MetaMask/go-did-it +module code.sonr.org/go/did-it go 1.24.4