forked from p30928647/excelize
Updating Readme
Removing the /v2 on the package url as it does not work with the ```go get``` command.
This commit is contained in:
parent
407fb55c20
commit
875dd22bd0
10
README.md
10
README.md
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue