diff options
author | Matthew McFarling <matthew.mcfarling@gmail.com> | 2019-08-28 17:05:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-28 17:05:27 -0400 |
commit | 875dd22bd013ef3873711c8e82f3d4d5e1675ebc (patch) | |
tree | 41af3f6e1ed498e637a042c45e0a32d3034e8ced /README.md | |
parent | 407fb55c20a2524c4eccad9361120dee2a2719cd (diff) |
Updating Readme
Removing the /v2 on the package url as it does not work with the ```go get``` command.
Diffstat (limited to 'README.md')
-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() { |