From 549f6e6aadf7e364dbc91bd005041039a02e922d Mon Sep 17 00:00:00 2001 From: Max Brosnahan Date: Sun, 18 Oct 2015 12:16:30 -0600 Subject: [PATCH] Change links to point to godoc.org Also changes links to use https instead of http --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 60dfb0e..9f66c6b 100644 --- a/README.md +++ b/README.md @@ -82,13 +82,13 @@ func main() { 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 -[`filestore`](/filestore/filestore.go) 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. 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 -is as simple as implementing the [`tusd.DataStore`](http://godoc.org/github.com/tus/tusd/#DataStore) -interface and using the new struct in the [configuration object](/handler.go#L53). +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](https://godoc.org/github.com/tus/tusd/#Config). Please consult the documentation about detailed information about the required methods.