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 a45ed03432
commit feeadc582b
35 changed files with 130 additions and 64 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"
)
// Store wraps a SQLite database connection for mc-proxy persistence.

View File

@@ -4,7 +4,7 @@ import (
"path/filepath"
"testing"
"git.wntrmute.dev/kyle/mc-proxy/internal/config"
"git.wntrmute.dev/mc/mc-proxy/internal/config"
)
func openTestDB(t *testing.T) *Store {

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 schema migrations for mc-proxy.

View File

@@ -4,7 +4,7 @@ import (
"fmt"
"strings"
"git.wntrmute.dev/kyle/mc-proxy/internal/config"
"git.wntrmute.dev/mc/mc-proxy/internal/config"
)
// Seed populates the database from TOML config data. Only called when the

View File

@@ -1,7 +1,7 @@
package db
import (
mcdsldb "git.wntrmute.dev/kyle/mcdsl/db"
mcdsldb "git.wntrmute.dev/mc/mcdsl/db"
)
// Snapshot creates a consistent backup of the database using VACUUM INTO.