mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
dashboard: gofmt -s -w .
This commit is contained in:
parent
ba8fa4d998
commit
5c4c879b1a
3 changed files with 8 additions and 8 deletions
|
|
@ -204,10 +204,11 @@ type bintree struct {
|
|||
Func func() (*asset, error)
|
||||
Children map[string]*bintree
|
||||
}
|
||||
|
||||
var _bintree = &bintree{nil, map[string]*bintree{
|
||||
"public": &bintree{nil, map[string]*bintree{
|
||||
"bundle.js": &bintree{publicBundleJs, map[string]*bintree{}},
|
||||
"dashboard.html": &bintree{publicDashboardHtml, map[string]*bintree{}},
|
||||
"public": {nil, map[string]*bintree{
|
||||
"bundle.js": {publicBundleJs, map[string]*bintree{}},
|
||||
"dashboard.html": {publicDashboardHtml, map[string]*bintree{}},
|
||||
}},
|
||||
}}
|
||||
|
||||
|
|
@ -257,4 +258,3 @@ func _filePath(dir, name string) string {
|
|||
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
||||
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue