Rework README
Add a badge link to godoc.org Add a small code example
This commit is contained in:
parent
04b1878733
commit
73b56eeee6
21
README.md
21
README.md
@ -3,6 +3,7 @@
|
||||
[](https://travis-ci.org/jlaffaye/ftp)
|
||||
[](https://coveralls.io/github/jlaffaye/ftp?branch=master)
|
||||
[](http://goreportcard.com/report/jlaffaye/ftp)
|
||||
[](http://godoc.org/github.com/jlaffaye/ftp)
|
||||
|
||||
A FTP client package for Go
|
||||
|
||||
@ -12,6 +13,22 @@ A FTP client package for Go
|
||||
go get -u github.com/jlaffaye/ftp
|
||||
```
|
||||
|
||||
## Documentation ##
|
||||
## Example ##
|
||||
|
||||
http://godoc.org/github.com/jlaffaye/ftp
|
||||
```go
|
||||
c, err := ftp.DialWithOptions("ftp.example.org", DialWithTimeout(5*time.Second))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
err = c.Login("anonymous", "anonymous")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// Do something with the FTP conn
|
||||
|
||||
if err := c.Close(); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user