Files
rest-server/handlers/snapshot.go
2015-08-11 14:14:07 +02:00

23 lines
413 B
Go

package handlers
import (
"fmt"
"net/http"
)
func HeadSnapshot(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "data")
}
func GetSnapshot(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "snapshot")
}
func PostSnapshot(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "snapshot")
}
func DeleteSnapshot(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "snapshot")
}