s3browser-backend/internal/httpserver/debug.go
2021-09-24 15:39:23 +02:00

12 lines
232 B
Go

//go:build !prod
// +build !prod
package httpserver
import "github.com/gorilla/mux"
// Since we dont have the static directory when developing we replace the function with an empty one
func initStatic(r *mux.Router) {
// NOOP
}