2020-07-13 09:51:21 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/gorilla/mux"
|
|
|
|
|
|
|
|
const systemPath = "/system"
|
|
|
|
|
|
|
|
func newS3Router() *mux.Router {
|
2022-01-20 14:47:21 +00:00
|
|
|
// Initialize router
|
2020-07-13 09:51:21 +00:00
|
|
|
return mux.NewRouter().SkipClean(true).UseEncodedPath()
|
|
|
|
}
|