15 lines
326 B
Go
15 lines
326 B
Go
|
package config
|
||
|
|
||
|
type systemConfig struct {
|
||
|
AppName string
|
||
|
Version float32
|
||
|
CurrentDir string
|
||
|
ThemesDir string
|
||
|
GitHookUrl string
|
||
|
AppRepository string
|
||
|
DocumentDir string
|
||
|
DocumentAssetsDir string
|
||
|
DocumentContentDir string
|
||
|
DocumentExtraNavDir string
|
||
|
}
|