diff --git a/color.go b/color.go index 5d0332a..fab94fa 100644 --- a/color.go +++ b/color.go @@ -5,7 +5,7 @@ import ( "strconv" "text/template" - "kumoly.io/core/log/color" + "kumoly.io/lib/klog/color" ) func (l *Logger) M(s interface{}, attrs ...color.Attribute) string { diff --git a/go.mod b/go.mod index 68d6978..1233889 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module kumoly.io/core/log +module kumoly.io/lib/klog go 1.17 diff --git a/log_test.go b/log_test.go index 7f8a594..b6b42f2 100644 --- a/log_test.go +++ b/log_test.go @@ -5,7 +5,7 @@ import ( "os" "testing" - c "kumoly.io/core/log/color" + c "kumoly.io/lib/klog/color" ) func TestDev(t *testing.T) { diff --git a/std.go b/std.go index 2260205..f17632c 100644 --- a/std.go +++ b/std.go @@ -4,7 +4,7 @@ import ( "io" "text/template" - "kumoly.io/core/log/color" + "kumoly.io/lib/klog/color" ) var std = New("")