Migrate module path from kyle/ to mc/ org

All import paths updated to git.wntrmute.dev/mc/. Bumps mcdsl to v1.2.0.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-27 02:05:59 -07:00
parent 5401181bde
commit bbe382dc10
105 changed files with 235 additions and 237 deletions

View File

@@ -14,7 +14,7 @@ import (
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
webui "git.wntrmute.dev/kyle/metacrypt/web"
webui "git.wntrmute.dev/mc/metacrypt/web"
)
// mockVault is a minimal vaultBackend implementation for tests.

View File

@@ -13,7 +13,7 @@ import (
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/metadata"
pb "git.wntrmute.dev/kyle/metacrypt/gen/metacrypt/v2"
pb "git.wntrmute.dev/mc/metacrypt/gen/metacrypt/v2"
)
// VaultClient wraps the gRPC stubs for communicating with the vault.

View File

@@ -8,7 +8,7 @@ import (
"strings"
"testing"
"git.wntrmute.dev/kyle/mcdsl/csrf"
"git.wntrmute.dev/mc/mcdsl/csrf"
)
func newTestCSRF(t *testing.T) *csrf.Protect {

View File

@@ -17,7 +17,7 @@ import (
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"git.wntrmute.dev/kyle/mcdsl/web"
"git.wntrmute.dev/mc/mcdsl/web"
)
// splitLines splits a newline-delimited string into non-empty trimmed lines.

View File

@@ -15,11 +15,11 @@ import (
"github.com/go-chi/chi/v5"
mcdslauth "git.wntrmute.dev/kyle/mcdsl/auth"
"git.wntrmute.dev/kyle/mcdsl/csrf"
"git.wntrmute.dev/kyle/mcdsl/web"
"git.wntrmute.dev/kyle/metacrypt/internal/config"
webui "git.wntrmute.dev/kyle/metacrypt/web"
mcdslauth "git.wntrmute.dev/mc/mcdsl/auth"
"git.wntrmute.dev/mc/mcdsl/csrf"
"git.wntrmute.dev/mc/mcdsl/web"
"git.wntrmute.dev/mc/metacrypt/internal/config"
webui "git.wntrmute.dev/mc/metacrypt/web"
)
// vaultBackend is the interface used by WebServer to communicate with the vault.