summaryrefslogtreecommitdiff
path: root/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'http.go')
-rw-r--r--http.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/http.go b/http.go
index bc2641e..38e07cf 100644
--- a/http.go
+++ b/http.go
@@ -78,25 +78,6 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
return
}
- if route == "/patchset" {
- savePatchset(w, msg)
- return
- }
- if route == "/GetPatchsets" {
- doSendPatchsets(w)
- return
- }
-
- if route == "/patchsetlist" {
- listPatchsets(w)
- return
- }
- if route == "/patchsetget" {
- filename := r.URL.Query().Get("filename")
- getPatchset(w, filename)
- return
- }
-
if route == "/goReference.svg" {
writeFile(w, "goReference.svg")
return