s3browser-backend/internal/debug.go

12 lines
231 B
Go
Raw Normal View History

2021-09-03 21:23:06 +00:00
//go:build !prod
// +build !prod
package s3browser
2021-09-11 20:17:22 +00:00
import "github.com/gorilla/mux"
2021-09-03 21:23:06 +00:00
// Since we dont have the static directory when developing we replace the function with an empty one
2021-09-11 20:17:22 +00:00
func initStatic(r *mux.Router) {
2021-09-03 21:23:06 +00:00
// NOOP
}