for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
//go:build dev
// +build dev
package assets
import (
"net/http"
)
func Assets() http.FileSystem {
return http.Dir("assets")
}