diff options
author | xuri <xuri.me@gmail.com> | 2019-09-01 12:23:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-01 12:23:19 +0800 |
commit | 333c5881c0b83ff596fc9a0d6d5378ff6319bbbb (patch) | |
tree | 41af3f6e1ed498e637a042c45e0a32d3034e8ced | |
parent | 407fb55c20a2524c4eccad9361120dee2a2719cd (diff) | |
parent | 875dd22bd013ef3873711c8e82f3d4d5e1675ebc (diff) |
Merge pull request #479 from mtmcfarl/patch-1
Updating Readme
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -21,7 +21,7 @@ Supports saving a file without losing original charts of XLSX. This library need ### Installation ```bash -go get github.com/360EntSecGroup-Skylar/excelize/v2 +go get github.com/360EntSecGroup-Skylar/excelize ``` ### Create XLSX file @@ -34,7 +34,7 @@ package main import ( "fmt" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { @@ -64,7 +64,7 @@ package main import ( "fmt" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { @@ -103,7 +103,7 @@ package main import ( "fmt" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { @@ -140,7 +140,7 @@ import ( _ "image/jpeg" _ "image/png" - "github.com/360EntSecGroup-Skylar/excelize/v2" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { |