about summary refs log tree commit diff
path: root/src/rest-api/cmd/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/rest-api/cmd/main.go')
-rw-r--r--src/rest-api/cmd/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rest-api/cmd/main.go b/src/rest-api/cmd/main.go
index 98f3722..ff91856 100644
--- a/src/rest-api/cmd/main.go
+++ b/src/rest-api/cmd/main.go
@@ -63,7 +63,7 @@ func main() {
 	mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
 		fmt.Fprint(w, "Hello folks!")
 	})
-	mux.Handle("/file/", handler)
+	mux.Handle("/api/v1/file/", handler)
 
 	http.ListenAndServe(":8080", mux)
 }