You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
1.1 KiB
17 lines
1.1 KiB
package config
|
|
|
|
type Autocode struct {
|
|
Root string `mapstructure:"root" json:"root" yaml:"root"`
|
|
Server string `mapstructure:"server" json:"server" yaml:"server"`
|
|
SApi string `mapstructure:"server-api" json:"serverApi" yaml:"server-api"`
|
|
SInitialize string `mapstructure:"server-initialize" json:"serverInitialize" yaml:"server-initialize"`
|
|
SModel string `mapstructure:"server-model" json:"serverModel" yaml:"server-model"`
|
|
SRequest string `mapstructure:"server-request" json:"serverRequest" yaml:"server-request"`
|
|
SRouter string `mapstructure:"server-router" json:"serverRouter" yaml:"server-router"`
|
|
SService string `mapstructure:"server-service" json:"serverService" yaml:"server-service"`
|
|
Web string `mapstructure:"web" json:"web" yaml:"web"`
|
|
WApi string `mapstructure:"web-api" json:"webApi" yaml:"web-api"`
|
|
WForm string `mapstructure:"web-form" json:"webForm" yaml:"web-form"`
|
|
WTable string `mapstructure:"web-table" json:"webTable" yaml:"web-table"`
|
|
WFlow string `mapstructure:"web-flow" json:"webFlow" yaml:"web-flow"`
|
|
}
|