func Dir(useLocal bool, name string) http.FileSystem
Dir returns a http.Filesystem for the embedded assets on a given prefix dir. If useLocal is true, the filesystem's contents are instead used.
func FS(useLocal bool) http.FileSystem
FS returns a http.Filesystem for the embedded assets. If useLocal is true, the filesystem's contents are instead used.
func FSByte(useLocal bool, name string) ([]byte, error)
FSByte returns the named file from the embedded assets. If useLocal is true, the filesystem's contents are instead used.
func FSMustByte(useLocal bool, name string) []byte
FSMustByte is the same as FSByte, but panics if name is not present.
func FSMustString(useLocal bool, name string) string
FSMustString is the string version of FSMustByte.
func FSString(useLocal bool, name string) (string, error)
FSString is the string version of FSByte.