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

@@ -4,7 +4,7 @@ import (
"database/sql"
"fmt"
mcdsldb "git.wntrmute.dev/kyle/mcdsl/db"
mcdsldb "git.wntrmute.dev/mc/mcdsl/db"
)
// DB wraps a SQLite database connection.

View File

@@ -5,7 +5,7 @@ import (
"errors"
"fmt"
"git.wntrmute.dev/kyle/mcr/internal/gc"
"git.wntrmute.dev/mc/mcr/internal/gc"
)
// FindAndDeleteUnreferencedBlobs finds all blob rows with no manifest_blobs

View File

@@ -1,7 +1,7 @@
package db
import (
mcdsldb "git.wntrmute.dev/kyle/mcdsl/db"
mcdsldb "git.wntrmute.dev/mc/mcdsl/db"
)
// Migrations is the ordered list of MCR schema migrations.

View File

@@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"
"git.wntrmute.dev/kyle/mcr/internal/policy"
"git.wntrmute.dev/mc/mcr/internal/policy"
)
// ruleBody is the JSON structure stored in the rule_json column.

View File

@@ -3,7 +3,7 @@ package db
import (
"testing"
"git.wntrmute.dev/kyle/mcr/internal/policy"
"git.wntrmute.dev/mc/mcr/internal/policy"
)
func TestLoadEnabledPolicyRules(t *testing.T) {