9 lines
171 B
Go
9 lines
171 B
Go
// +build dev
|
|
|
|
package public
|
|
|
|
import "net/http"
|
|
|
|
// Assets is the public file system which should be served by http
|
|
var Assets http.FileSystem = http.Dir("../../public")
|