diff options
author | xuri <xuri.me@gmail.com> | 2017-12-01 16:50:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-01 16:50:07 +0800 |
commit | 443695732ea878986db320b0b008070ed3f895a2 (patch) | |
tree | 8607d1f490a85f417db831854285ae103b66ff80 /README.md | |
parent | 76366fc1d9fe5d0a25d364c917597d4ac62f3b18 (diff) | |
parent | 21214a514dd64bbcbb5a5e498d091a7b0e9eec9b (diff) |
Merge pull request #153 from jinzhu/master
Rename import path to github.com/360EntSecGroup-Skylar/excelize
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -4,7 +4,7 @@ [](https://travis-ci.org/360EntSecGroup-Skylar/excelize) [](https://codecov.io/gh/360EntSecGroup-Skylar/excelize) -[](https://goreportcard.com/report/github.com/xuri/excelize) +[](https://goreportcard.com/report/github.com/360EntSecGroup-Skylar/excelize) [](https://godoc.org/github.com/360EntSecGroup-Skylar/excelize) [](https://opensource.org/licenses/BSD-3-Clause) [](https://www.paypal.me/xuri) @@ -18,7 +18,7 @@ Excelize is a library written in pure Golang and providing a set of functions th ### Installation ```go -go get github.com/xuri/excelize +go get github.com/360EntSecGroup-Skylar/excelize ``` ### Create XLSX file @@ -31,7 +31,7 @@ package main import ( "fmt" - "github.com/xuri/excelize" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { @@ -61,7 +61,7 @@ package main import ( "fmt" - "github.com/xuri/excelize" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { @@ -97,7 +97,7 @@ package main import ( "fmt" - "github.com/xuri/excelize" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { @@ -130,7 +130,7 @@ import ( _ "image/jpeg" _ "image/png" - "github.com/xuri/excelize" + "github.com/360EntSecGroup-Skylar/excelize" ) func main() { |