Add missing handler functions

This commit is contained in:
Eliot Whalan 2016-06-24 11:04:26 +10:00
parent a778ffdd33
commit 7b7995dcab
1 changed files with 4 additions and 0 deletions

View File

@ -253,6 +253,10 @@ func pasteHandler(w http.ResponseWriter, r *http.Request) {
}
}
func cloneHandler(w http.ResponseWriter, r *http.Request) {
}
func downloadHandler(w http.ResponseWriter, r *http.Request) {
}
func rawHandler(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
paste := vars["pasteId"]