mirror of https://github.com/pkg/sftp.git
update documentation links
This commit is contained in:
parent
821e052fa0
commit
fa54a9ef5d
10
README.md
10
README.md
|
@ -5,25 +5,25 @@ The `sftp` package provides support for file system operations on remote ssh
|
||||||
servers using the SFTP subsystem. It also implements an SFTP server for serving
|
servers using the SFTP subsystem. It also implements an SFTP server for serving
|
||||||
files from the filesystem.
|
files from the filesystem.
|
||||||
|
|
||||||
 [](http://godoc.org/github.com/pkg/sftp)
|
 [](https://pkg.go.dev/github.com/pkg/sftp)
|
||||||
|
|
||||||
usage and examples
|
usage and examples
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
See [godoc.org/github.com/pkg/sftp](http://godoc.org/github.com/pkg/sftp) for
|
See [https://pkg.go.dev/github.com/pkg/sftp](https://pkg.go.dev/github.com/pkg/sftp) for
|
||||||
examples and usage.
|
examples and usage.
|
||||||
|
|
||||||
The basic operation of the package mirrors the facilities of the
|
The basic operation of the package mirrors the facilities of the
|
||||||
[os](http://golang.org/pkg/os) package.
|
[os](http://golang.org/pkg/os) package.
|
||||||
|
|
||||||
The Walker interface for directory traversal is heavily inspired by Keith
|
The Walker interface for directory traversal is heavily inspired by Keith
|
||||||
Rarick's [fs](http://godoc.org/github.com/kr/fs) package.
|
Rarick's [fs](https://pkg.go.dev/github.com/kr/fs) package.
|
||||||
|
|
||||||
roadmap
|
roadmap
|
||||||
-------
|
-------
|
||||||
|
|
||||||
* There is way too much duplication in the Client methods. If there was an
|
* There is way too much duplication in the Client methods. If there was an
|
||||||
unmarshal(interface{}) method this would reduce a heap of the duplication.
|
unmarshal(interface{}) method this would reduce a heap of the duplication.
|
||||||
|
|
||||||
contributing
|
contributing
|
||||||
------------
|
------------
|
||||||
|
|
Loading…
Reference in New Issue