func NewConfig()

in config.go [146:155]


func NewConfig() *Config {
	c := new(Config)
	c.Package = "main"
	c.NoMemCopy = false
	c.NoCompress = false
	c.Debug = false
	c.Output = "./bindata.go"
	c.Ignore = make([]*regexp.Regexp, 0)
	return c
}