You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
546 B
24 lines
546 B
package minio
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gorilla/mux"
|
|
"net/http"
|
|
)
|
|
|
|
func GatewayHandler(w http.ResponseWriter, req *http.Request) {
|
|
fmt.Fprintf(w, "Gateway")
|
|
}
|
|
|
|
func GatewayGetObjectHandler(w http.ResponseWriter, req *http.Request) {
|
|
vars := mux.Vars(req)
|
|
bucket := vars["bucket"]
|
|
object := vars["object"]
|
|
fmt.Fprintf(w, "bucket: "+bucket)
|
|
fmt.Fprintf(w, "\r")
|
|
fmt.Fprintf(w, "object: "+object)
|
|
}
|
|
|
|
func RegisterGatewayHandlers(router *mux.Router) {
|
|
router.HandleFunc("/{bucket}/{object:.*}", GatewayGetObjectHandler).Methods("GET")
|
|
}
|
|
|