Merge pull request #25 from gingermusketeer/tweak_readme_links

Tweak README.md links
This commit is contained in:
Marius 2015-10-18 20:18:36 +02:00
commit 4c59ae42b7
1 changed files with 3 additions and 3 deletions

View File

@ -82,13 +82,13 @@ func main() {
The tusd server is built to be as flexible as possible and to allow the use The tusd server is built to be as flexible as possible and to allow the use
of different upload storage mechanisms. By default the tusd binary includes of different upload storage mechanisms. By default the tusd binary includes
[`filestore`](github.com/tus/tusd/filestore/) which will save every upload [`filestore`](https://godoc.org/github.com/tus/tusd/filestore) which will save every upload
to a specific directory on disk. to a specific directory on disk.
If you have different requirements, you can build your own storage backend If you have different requirements, you can build your own storage backend
which will save the files to S3, a remote FTP server or similar. Doing so which will save the files to S3, a remote FTP server or similar. Doing so
is as simple as implementing the [`tusd.DateStore`](http://godoc.org/github.com/tus/tusd/#DataStore) is as simple as implementing the [`tusd.DataStore`](https://godoc.org/github.com/tus/tusd/#DataStore)
interface and using the new struct in the [configuration object](github.com/tus/tusd/#Config). interface and using the new struct in the [configuration object](https://godoc.org/github.com/tus/tusd/#Config).
Please consult the documentation about detailed information about the Please consult the documentation about detailed information about the
required methods. required methods.