fmt
This commit is contained in:
parent
e10ea4bd61
commit
08a3cc76d1
@ -413,20 +413,20 @@ func AssetNames() []string {
|
||||
|
||||
// _bindata is a table, holding each asset generator, mapped to its name.
|
||||
var _bindata = map[string]func() (*asset, error){
|
||||
"assets/app/components/index.html": assetsAppComponentsIndexHtml,
|
||||
"assets/app/components/project/index.html": assetsAppComponentsProjectIndexHtml,
|
||||
"assets/app/components/projects/index.html": assetsAppComponentsProjectsIndexHtml,
|
||||
"assets/assets/css/app.css": assetsAssetsCssAppCss,
|
||||
"assets/assets/img/svg/github-logo.svg": assetsAssetsImgSvgGithubLogoSvg,
|
||||
"assets/assets/img/svg/ic_cached_black_48px.svg": assetsAssetsImgSvgIc_cached_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_delete_sweep_black_48px.svg": assetsAssetsImgSvgIc_delete_sweep_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_error_black_48px.svg": assetsAssetsImgSvgIc_error_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_file_download_black_48px.svg": assetsAssetsImgSvgIc_file_download_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_more_vert_black_48px.svg": assetsAssetsImgSvgIc_more_vert_black_48pxSvg,
|
||||
"assets/app/components/index.html": assetsAppComponentsIndexHtml,
|
||||
"assets/app/components/project/index.html": assetsAppComponentsProjectIndexHtml,
|
||||
"assets/app/components/projects/index.html": assetsAppComponentsProjectsIndexHtml,
|
||||
"assets/assets/css/app.css": assetsAssetsCssAppCss,
|
||||
"assets/assets/img/svg/github-logo.svg": assetsAssetsImgSvgGithubLogoSvg,
|
||||
"assets/assets/img/svg/ic_cached_black_48px.svg": assetsAssetsImgSvgIc_cached_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_delete_sweep_black_48px.svg": assetsAssetsImgSvgIc_delete_sweep_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_error_black_48px.svg": assetsAssetsImgSvgIc_error_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_file_download_black_48px.svg": assetsAssetsImgSvgIc_file_download_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_more_vert_black_48px.svg": assetsAssetsImgSvgIc_more_vert_black_48pxSvg,
|
||||
"assets/assets/img/svg/ic_swap_vertical_circle_black_48px.svg": assetsAssetsImgSvgIc_swap_vertical_circle_black_48pxSvg,
|
||||
"assets/assets/js/all.js": assetsAssetsJsAllJs,
|
||||
"assets/assets/js/all.min.js": assetsAssetsJsAllMinJs,
|
||||
"assets/index.html": assetsIndexHtml,
|
||||
"assets/assets/js/all.js": assetsAssetsJsAllJs,
|
||||
"assets/assets/js/all.min.js": assetsAssetsJsAllMinJs,
|
||||
"assets/index.html": assetsIndexHtml,
|
||||
}
|
||||
|
||||
// AssetDir returns the file names below a certain
|
||||
@ -468,40 +468,41 @@ type bintree struct {
|
||||
Func func() (*asset, error)
|
||||
Children map[string]*bintree
|
||||
}
|
||||
|
||||
var _bintree = &bintree{nil, map[string]*bintree{
|
||||
"assets": &bintree{nil, map[string]*bintree{
|
||||
"app": &bintree{nil, map[string]*bintree{
|
||||
"components": &bintree{nil, map[string]*bintree{
|
||||
"index.html": &bintree{assetsAppComponentsIndexHtml, map[string]*bintree{}},
|
||||
"project": &bintree{nil, map[string]*bintree{
|
||||
"index.html": &bintree{assetsAppComponentsProjectIndexHtml, map[string]*bintree{}},
|
||||
"assets": {nil, map[string]*bintree{
|
||||
"app": {nil, map[string]*bintree{
|
||||
"components": {nil, map[string]*bintree{
|
||||
"index.html": {assetsAppComponentsIndexHtml, map[string]*bintree{}},
|
||||
"project": {nil, map[string]*bintree{
|
||||
"index.html": {assetsAppComponentsProjectIndexHtml, map[string]*bintree{}},
|
||||
}},
|
||||
"projects": &bintree{nil, map[string]*bintree{
|
||||
"index.html": &bintree{assetsAppComponentsProjectsIndexHtml, map[string]*bintree{}},
|
||||
"projects": {nil, map[string]*bintree{
|
||||
"index.html": {assetsAppComponentsProjectsIndexHtml, map[string]*bintree{}},
|
||||
}},
|
||||
}},
|
||||
}},
|
||||
"assets": &bintree{nil, map[string]*bintree{
|
||||
"css": &bintree{nil, map[string]*bintree{
|
||||
"app.css": &bintree{assetsAssetsCssAppCss, map[string]*bintree{}},
|
||||
"assets": {nil, map[string]*bintree{
|
||||
"css": {nil, map[string]*bintree{
|
||||
"app.css": {assetsAssetsCssAppCss, map[string]*bintree{}},
|
||||
}},
|
||||
"img": &bintree{nil, map[string]*bintree{
|
||||
"svg": &bintree{nil, map[string]*bintree{
|
||||
"github-logo.svg": &bintree{assetsAssetsImgSvgGithubLogoSvg, map[string]*bintree{}},
|
||||
"ic_cached_black_48px.svg": &bintree{assetsAssetsImgSvgIc_cached_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_delete_sweep_black_48px.svg": &bintree{assetsAssetsImgSvgIc_delete_sweep_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_error_black_48px.svg": &bintree{assetsAssetsImgSvgIc_error_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_file_download_black_48px.svg": &bintree{assetsAssetsImgSvgIc_file_download_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_more_vert_black_48px.svg": &bintree{assetsAssetsImgSvgIc_more_vert_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_swap_vertical_circle_black_48px.svg": &bintree{assetsAssetsImgSvgIc_swap_vertical_circle_black_48pxSvg, map[string]*bintree{}},
|
||||
"img": {nil, map[string]*bintree{
|
||||
"svg": {nil, map[string]*bintree{
|
||||
"github-logo.svg": {assetsAssetsImgSvgGithubLogoSvg, map[string]*bintree{}},
|
||||
"ic_cached_black_48px.svg": {assetsAssetsImgSvgIc_cached_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_delete_sweep_black_48px.svg": {assetsAssetsImgSvgIc_delete_sweep_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_error_black_48px.svg": {assetsAssetsImgSvgIc_error_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_file_download_black_48px.svg": {assetsAssetsImgSvgIc_file_download_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_more_vert_black_48px.svg": {assetsAssetsImgSvgIc_more_vert_black_48pxSvg, map[string]*bintree{}},
|
||||
"ic_swap_vertical_circle_black_48px.svg": {assetsAssetsImgSvgIc_swap_vertical_circle_black_48pxSvg, map[string]*bintree{}},
|
||||
}},
|
||||
}},
|
||||
"js": &bintree{nil, map[string]*bintree{
|
||||
"all.js": &bintree{assetsAssetsJsAllJs, map[string]*bintree{}},
|
||||
"all.min.js": &bintree{assetsAssetsJsAllMinJs, map[string]*bintree{}},
|
||||
"js": {nil, map[string]*bintree{
|
||||
"all.js": {assetsAssetsJsAllJs, map[string]*bintree{}},
|
||||
"all.min.js": {assetsAssetsJsAllMinJs, map[string]*bintree{}},
|
||||
}},
|
||||
}},
|
||||
"index.html": &bintree{assetsIndexHtml, map[string]*bintree{}},
|
||||
"index.html": {assetsIndexHtml, map[string]*bintree{}},
|
||||
}},
|
||||
}}
|
||||
|
||||
@ -551,4 +552,3 @@ func _filePath(dir, name string) string {
|
||||
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
||||
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user