asset.go 464 B

12345678910111213
  1. // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
  2. // license. Its contents can be found at:
  3. // http://creativecommons.org/publicdomain/zero/1.0/
  4. package bindata
  5. // Asset holds information about a single asset to be processed.
  6. type Asset struct {
  7. Path string // Full file path.
  8. Name string // Key used in TOC -- name by which asset is referenced.
  9. Func string // Function name for the procedure returning the asset contents.
  10. }