Skip to content

Commit e9d064c

Browse files
committed
fixed bindata package name
1 parent 2bb76df commit e9d064c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

go/bindata.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package main
1+
package refererparser
22

33
import (
44
"bytes"
@@ -972,6 +972,7 @@ func AssetNames() []string {
972972
var _bindata = map[string]func() ([]byte, error){
973973
"data/referers.yml": data_referers_yml,
974974
}
975+
975976
// AssetDir returns the file names below a certain
976977
// directory embedded in the file by go-bindata.
977978
// For example if you run go-bindata on data/... and data contains the
@@ -1005,12 +1006,12 @@ func AssetDir(name string) ([]string, error) {
10051006
}
10061007

10071008
type _bintree_t struct {
1008-
Func func() ([]byte, error)
1009+
Func func() ([]byte, error)
10091010
Children map[string]*_bintree_t
10101011
}
1012+
10111013
var _bintree = &_bintree_t{nil, map[string]*_bintree_t{
10121014
"data": &_bintree_t{nil, map[string]*_bintree_t{
1013-
"referers.yml": &_bintree_t{data_referers_yml, map[string]*_bintree_t{
1014-
}},
1015+
"referers.yml": &_bintree_t{data_referers_yml, map[string]*_bintree_t{}},
10151016
}},
10161017
}}

0 commit comments

Comments
 (0)