cca9f8e6b7
is no point to this. All output (including TOC) is now written to a single output file. This allows us to have different output file names to be specified. Each for a different version generated code with its own build tags. Consequently offering much greater flexibility in the way generated code is to be used in a host application. Fixes test outputs to match all these changes.
13 lines
464 B
Go
13 lines
464 B
Go
// 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.
|
|
}
|