diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-15 01:20:14 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-15 01:20:14 -0500 |
commit | b2c0c37fe3c5b7bc5b762a62a3372de2b3b30538 (patch) | |
tree | f491b8d2cff77e40300b40ac39c96c838b74f2d9 | |
parent | e32cda84c670957dc887c627435882c377a48a55 (diff) |
go to /files/src/ by default
-rw-r--r-- | src/edit/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edit/main.go b/src/edit/main.go index 66e9a36..5995bea 100644 --- a/src/edit/main.go +++ b/src/edit/main.go @@ -11,7 +11,7 @@ func ServeIndex(out http.ResponseWriter, in *http.Request) { http.NotFound(out, in) return } - http.Redirect(out, in, "/files/", http.StatusMovedPermanently) + http.Redirect(out, in, "/files/src/", http.StatusMovedPermanently) } func main() { |