|
|
|
@ -15,6 +15,7 @@ func bindata_read(path, name string) ([]byte, error) { |
|
|
|
|
return buf, err |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// conf_app_ini reads file data from disk. It returns an error on failure.
|
|
|
|
|
func conf_app_ini() ([]byte, error) { |
|
|
|
|
return bindata_read( |
|
|
|
@ -175,6 +176,14 @@ func conf_supervisor_ini() ([]byte, error) { |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// conf_version reads file data from disk. It returns an error on failure.
|
|
|
|
|
func conf_version() ([]byte, error) { |
|
|
|
|
return bindata_read( |
|
|
|
|
"/Users/jiahuachen/Applications/Go/src/github.com/gogits/gogs/conf/VERSION", |
|
|
|
|
"conf/VERSION", |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Asset loads and returns the asset for the given name.
|
|
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
|
// could not be loaded.
|
|
|
|
@ -196,7 +205,7 @@ func AssetNames() []string { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// _bindata is a table, holding each asset generator, mapped to its name.
|
|
|
|
|
var _bindata = map[string]func() ([]byte, error){ |
|
|
|
|
var _bindata = map[string] func() ([]byte, error) { |
|
|
|
|
"conf/app.ini": conf_app_ini, |
|
|
|
|
"conf/content/git-bare.zip": conf_content_git_bare_zip, |
|
|
|
|
"conf/etc/supervisord.conf": conf_etc_supervisord_conf, |
|
|
|
@ -217,4 +226,5 @@ var _bindata = map[string]func() ([]byte, error){ |
|
|
|
|
"conf/license/MIT License": conf_license_mit_license, |
|
|
|
|
"conf/mysql.sql": conf_mysql_sql, |
|
|
|
|
"conf/supervisor.ini": conf_supervisor_ini, |
|
|
|
|
"conf/VERSION": conf_version, |
|
|
|
|
} |
|
|
|
|