Skip to content

Commit d6dada1

Browse files
authored
Merge pull request #3 from dAppCore/dev
chore: module path update
2 parents cee07f0 + 1728c29 commit d6dada1

24 files changed

Lines changed: 25 additions & 25 deletions

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module forge.lthn.ai/core/go
1+
module dappco.re/go/core
22

33
go 1.26.0
44

pkg/core/embed.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ func GeneratePack(pkg ScannedPackage) Result {
224224
return Result{b.String(), true}
225225
}
226226

227-
b.WriteString("import \"forge.lthn.ai/core/go/pkg/core\"\n\n")
227+
b.WriteString("import \"dappco.re/go/core/pkg/core\"\n\n")
228228
b.WriteString("func init() {\n")
229229

230230
// Pack groups (entire directories)

tests/app_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core_test
33
import (
44
"testing"
55

6-
. "forge.lthn.ai/core/go/pkg/core"
6+
. "dappco.re/go/core/pkg/core"
77
"github.com/stretchr/testify/assert"
88
)
99

tests/array_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core_test
33
import (
44
"testing"
55

6-
. "forge.lthn.ai/core/go/pkg/core"
6+
. "dappco.re/go/core/pkg/core"
77
"github.com/stretchr/testify/assert"
88
)
99

tests/cli_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core_test
33
import (
44
"testing"
55

6-
. "forge.lthn.ai/core/go/pkg/core"
6+
. "dappco.re/go/core/pkg/core"
77
"github.com/stretchr/testify/assert"
88
)
99

tests/command_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core_test
33
import (
44
"testing"
55

6-
. "forge.lthn.ai/core/go/pkg/core"
6+
. "dappco.re/go/core/pkg/core"
77
"github.com/stretchr/testify/assert"
88
)
99

tests/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core_test
33
import (
44
"testing"
55

6-
. "forge.lthn.ai/core/go/pkg/core"
6+
. "dappco.re/go/core/pkg/core"
77
"github.com/stretchr/testify/assert"
88
)
99

tests/core_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core_test
33
import (
44
"testing"
55

6-
. "forge.lthn.ai/core/go/pkg/core"
6+
. "dappco.re/go/core/pkg/core"
77
"github.com/stretchr/testify/assert"
88
)
99

tests/data_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io"
66
"testing"
77

8-
. "forge.lthn.ai/core/go/pkg/core"
8+
. "dappco.re/go/core/pkg/core"
99
"github.com/stretchr/testify/assert"
1010
)
1111

tests/drive_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package core_test
33
import (
44
"testing"
55

6-
. "forge.lthn.ai/core/go/pkg/core"
6+
. "dappco.re/go/core/pkg/core"
77
"github.com/stretchr/testify/assert"
88
)
99

0 commit comments

Comments
 (0)