10 lines
185 B
Go
10 lines
185 B
Go
|
//go:build !prod
|
||
|
// +build !prod
|
||
|
|
||
|
package s3browser
|
||
|
|
||
|
// Since we dont have the static directory when developing we replace the function with an empty one
|
||
|
func initStatic() {
|
||
|
// NOOP
|
||
|
}
|