Updating Readme

Removing the /v2 on the package url as it does not work with the ```go get``` command.
This commit is contained in:
Matthew McFarling 2019-08-28 17:05:27 -04:00 committed by GitHub
parent 407fb55c20
commit 875dd22bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -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() {