Documentation ¶
Overview ¶
Package bindata is a helper module that allows to use in-memory static and template files for Macaron.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Options ¶
type Options struct { // Asset should return content of file in path if exists Asset func(path string) ([]byte, error) // AssetDir should return list of files in the path AssetDir func(path string) ([]string, error) // AssetInfo should return the info of file in path if exists AssetInfo func(path string) (os.FileInfo, error) // AssetNames should return list of all asset names AssetNames func() []string // Prefix would be prepended to http requests Prefix string }
Click to show internal directories.
Click to hide internal directories.