2021-09-03 21:23:06 +00:00
|
|
|
//go:build !prod
|
|
|
|
// +build !prod
|
|
|
|
|
2021-09-24 13:39:23 +00:00
|
|
|
package httpserver
|
2021-09-03 21:23:06 +00:00
|
|
|
|
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
|
|
|
|
}
|