frostfs-s3-gw/cmd/s3-gw/app_router.go

11 lines
191 B
Go

package main
import "github.com/gorilla/mux"
const systemPath = "/system"
func newS3Router() *mux.Router {
// Initialize router
return mux.NewRouter().SkipClean(true).UseEncodedPath()
}