From edd58a76329f9878dee8a33a7a3f774ff8498667 Mon Sep 17 00:00:00 2001 From: vicanso Date: Sat, 25 Dec 2021 16:56:34 +0800 Subject: [PATCH] refactor: change module's name --- README.md | 2 +- examples/basic/main.go | 2 +- examples/charts/main.go | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 036e635..ff4b974 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ package main import ( "os" - charts "github.com/vicanso/echarts" + charts "github.com/vicanso/go-echarts" ) func main() { diff --git a/examples/basic/main.go b/examples/basic/main.go index d30d0cf..c019df3 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -3,7 +3,7 @@ package main import ( "os" - charts "github.com/vicanso/echarts" + charts "github.com/vicanso/go-echarts" ) func main() { diff --git a/examples/charts/main.go b/examples/charts/main.go index 72b75b0..4316d79 100644 --- a/examples/charts/main.go +++ b/examples/charts/main.go @@ -4,7 +4,7 @@ import ( "bytes" "net/http" - charts "github.com/vicanso/echarts" + charts "github.com/vicanso/go-echarts" ) var html = ` diff --git a/go.mod b/go.mod index 6ea9001..b83ca6c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/vicanso/echarts +module github.com/vicanso/go-echarts go 1.17