mirror of
https://github.com/hamburghammer/gohttpserver.git
synced 2024-12-22 22:47:41 +01:00
9 lines
172 B
Go
9 lines
172 B
Go
// +build !vfs
|
|
//go:generate go run assets_generate.go
|
|
|
|
package main
|
|
|
|
import "net/http"
|
|
|
|
// Assets contains project assets.
|
|
var Assets http.FileSystem = http.Dir("assets")
|