Codebase list golang-bindata / 99e4f9f3-e75d-4133-a523-409164dabb9a/main asset.go
99e4f9f3-e75d-4133-a523-409164dabb9a/main

Tree @99e4f9f3-e75d-4133-a523-409164dabb9a/main (Download .tar.gz)

asset.go @99e4f9f3-e75d-4133-a523-409164dabb9a/mainraw · history · blame

// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
// license. Its contents can be found at:
// http://creativecommons.org/publicdomain/zero/1.0/

package bindata

// Asset holds information about a single asset to be processed.
type Asset struct {
	Path string // Full file path.
	Name string // Key used in TOC -- name by which asset is referenced.
	Func string // Function name for the procedure returning the asset contents.
}