a geicko-2 based round robin ranking system designed to test c++ battleship submissions
battleship.dunkirk.sh
1sftp
2----
3
4The `sftp` package provides support for file system operations on remote ssh
5servers using the SFTP subsystem. It also implements an SFTP server for serving
6files from the filesystem.
7
8 [](https://pkg.go.dev/github.com/pkg/sftp)
9
10usage and examples
11------------------
12
13See [https://pkg.go.dev/github.com/pkg/sftp](https://pkg.go.dev/github.com/pkg/sftp) for
14examples and usage.
15
16The basic operation of the package mirrors the facilities of the
17[os](http://golang.org/pkg/os) package.
18
19The Walker interface for directory traversal is heavily inspired by Keith
20Rarick's [fs](https://pkg.go.dev/github.com/kr/fs) package.
21
22roadmap
23-------
24
25* There is way too much duplication in the Client methods. If there was an
26 unmarshal(interface{}) method this would reduce a heap of the duplication.
27
28contributing
29------------
30
31We welcome pull requests, bug fixes and issue reports.
32
33Before proposing a large change, first please discuss your change by raising an
34issue.
35
36For API/code bugs, please include a small, self contained code example to
37reproduce the issue. For pull requests, remember test coverage.
38
39We try to handle issues and pull requests with a 0 open philosophy. That means
40we will try to address the submission as soon as possible and will work toward
41a resolution. If progress can no longer be made (eg. unreproducible bug) or
42stops (eg. unresponsive submitter), we will close the bug.
43
44Thanks.