diff --git a/cmds/mcla/analysis.go b/cmds/mcla/analysis.go index ef89d19..fd17234 100644 --- a/cmds/mcla/analysis.go +++ b/cmds/mcla/analysis.go @@ -5,7 +5,7 @@ import ( "io" "sync" - "github.com/kmcsr/mcla" + "github.com/GlobeMC/mcla" ) type ErrorResult struct { diff --git a/cmds/mcla/errdb.go b/cmds/mcla/errdb.go index 7c07839..b4e8cda 100644 --- a/cmds/mcla/errdb.go +++ b/cmds/mcla/errdb.go @@ -8,7 +8,7 @@ import ( "net/url" "sync" - "github.com/kmcsr/mcla" + "github.com/GlobeMC/mcla" ) const syntaxVersion = 0 // 0 means dev diff --git a/cmds/mcla/main.go b/cmds/mcla/main.go index 9433b7b..d83063f 100644 --- a/cmds/mcla/main.go +++ b/cmds/mcla/main.go @@ -6,7 +6,7 @@ import ( "fmt" "os" - "github.com/kmcsr/mcla" + "github.com/GlobeMC/mcla" ) func printf(format string, args ...any){ diff --git a/cmds/mcla_wasm/errdb.go b/cmds/mcla_wasm/errdb.go index 5517ad2..4bddf0e 100644 --- a/cmds/mcla_wasm/errdb.go +++ b/cmds/mcla_wasm/errdb.go @@ -7,7 +7,7 @@ import ( "net/url" "sync" - . "github.com/kmcsr/mcla" + . "github.com/GlobeMC/mcla" ) const syntaxVersion = 0 // 0 means dev diff --git a/cmds/mcla_wasm/main.go b/cmds/mcla_wasm/main.go index 82bac7c..a128620 100644 --- a/cmds/mcla_wasm/main.go +++ b/cmds/mcla_wasm/main.go @@ -9,7 +9,7 @@ import ( "sync" "syscall/js" - . "github.com/kmcsr/mcla" + . "github.com/GlobeMC/mcla" ) var bgCtx context.Context = createBackgroundCtx() diff --git a/cmds/mcla_wasm/main_test.go b/cmds/mcla_wasm/main_test.go index 8296503..6c81c4a 100644 --- a/cmds/mcla_wasm/main_test.go +++ b/cmds/mcla_wasm/main_test.go @@ -2,4 +2,4 @@ // this file just for keeping `tinygo test` works package main_test -import _ "github.com/kmcsr/mcla/cmds/mcla_wasm" +import _ "github.com/GlobeMC/mcla/cmds/mcla_wasm" diff --git a/go.mod b/go.mod index ae8f6ee..63d4fc6 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/kmcsr/mcla +module github.com/GlobeMC/mcla go 1.21