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 296bbc5357
commit d5580f01f2
82 changed files with 1440 additions and 457 deletions

View File

@@ -7,7 +7,7 @@ import (
"strconv"
"strings"
mcrv1 "git.wntrmute.dev/kyle/mcr/gen/mcr/v1"
mcrv1 "git.wntrmute.dev/mc/mcr/gen/mcr/v1"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/metadata"

View File

@@ -14,8 +14,8 @@ import (
"github.com/go-chi/chi/v5"
"github.com/go-chi/chi/v5/middleware"
mcrv1 "git.wntrmute.dev/kyle/mcr/gen/mcr/v1"
"git.wntrmute.dev/kyle/mcr/web"
mcrv1 "git.wntrmute.dev/mc/mcr/gen/mcr/v1"
"git.wntrmute.dev/mc/mcr/web"
)
// LoginFunc authenticates a user and returns a bearer token.

View File

@@ -15,7 +15,7 @@ import (
"google.golang.org/grpc/credentials/insecure"
"google.golang.org/grpc/status"
mcrv1 "git.wntrmute.dev/kyle/mcr/gen/mcr/v1"
mcrv1 "git.wntrmute.dev/mc/mcr/gen/mcr/v1"
)
// fakeRegistryService implements RegistryServiceServer for testing.

View File

@@ -8,7 +8,7 @@ import (
"strings"
"time"
"git.wntrmute.dev/kyle/mcr/web"
"git.wntrmute.dev/mc/mcr/web"
)
// templateSet wraps parsed templates and provides a render method.