12 lines
231 B
Go
12 lines
231 B
Go
//go:build !prod
|
|
// +build !prod
|
|
|
|
package s3browser
|
|
|
|
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
|
|
}
|