Updated package name

This commit is contained in:
Leon Mika 2024-04-27 11:00:48 +10:00
parent a44ec0310b
commit af604d60c9
5 changed files with 5 additions and 5 deletions

View File

@ -3,8 +3,8 @@ package main
import ( import (
"context" "context"
"github.com/chzyer/readline" "github.com/chzyer/readline"
"github.com/lmika/ucl/ucl"
"log" "log"
"ucl.lmika.dev/ucl"
) )
func main() { func main() {

View File

@ -7,9 +7,9 @@ import (
"context" "context"
"errors" "errors"
"github.com/alecthomas/participle/v2" "github.com/alecthomas/participle/v2"
"github.com/lmika/ucl/ucl"
"strings" "strings"
"syscall/js" "syscall/js"
"ucl.lmika.dev/ucl"
) )
func invokeUCLCallback(name string, args ...any) { func invokeUCLCallback(name string, args ...any) {

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/lmika/ucl module ucl.lmika.dev
go 1.21.1 go 1.21.1

View File

@ -3,8 +3,8 @@ package ucl_test
import ( import (
"bytes" "bytes"
"context" "context"
"github.com/lmika/ucl/ucl"
"testing" "testing"
"ucl.lmika.dev/ucl"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )

View File

@ -3,9 +3,9 @@ package ucl_test
import ( import (
"bytes" "bytes"
"context" "context"
"github.com/lmika/ucl/ucl"
"strings" "strings"
"testing" "testing"
"ucl.lmika.dev/ucl"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )