|
1 | 1 | package config |
2 | 2 |
|
3 | 3 | type Autocode struct { |
4 | | - Root string `mapstructure:"root" json:"root" yaml:"root"` |
5 | | - Server string `mapstructure:"server" json:"server" yaml:"server"` |
6 | | - SApi string `mapstructure:"server-api" json:"serverApi" yaml:"server-api"` |
7 | | - SInitialize string `mapstructure:"server-initialize" json:"serverInitialize" yaml:"server-initialize"` |
8 | | - SModel string `mapstructure:"server-model" json:"serverModel" yaml:"server-model"` |
9 | | - SRequest string `mapstructure:"server-request" json:"serverRequest" yaml:"server-request"` |
10 | | - SRouter string `mapstructure:"server-router" json:"serverRouter" yaml:"server-router"` |
11 | | - SService string `mapstructure:"server-service" json:"serverService" yaml:"server-service"` |
12 | | - Web string `mapstructure:"web" json:"web" yaml:"web"` |
13 | | - WApi string `mapstructure:"web-api" json:"webApi" yaml:"web-api"` |
14 | | - WForm string `mapstructure:"web-form" json:"webForm" yaml:"web-form"` |
15 | | - WTable string `mapstructure:"web-table" json:"webTable" yaml:"web-table"` |
16 | | - WFlow string `mapstructure:"web-flow" json:"webFlow" yaml:"web-flow"` |
| 4 | + TransferRestart bool `mapstructure:"transfer-restart" json:"transferRestart" yaml:"transfer-restart"` |
| 5 | + Root string `mapstructure:"root" json:"root" yaml:"root"` |
| 6 | + Server string `mapstructure:"server" json:"server" yaml:"server"` |
| 7 | + SApi string `mapstructure:"server-api" json:"serverApi" yaml:"server-api"` |
| 8 | + SInitialize string `mapstructure:"server-initialize" json:"serverInitialize" yaml:"server-initialize"` |
| 9 | + SModel string `mapstructure:"server-model" json:"serverModel" yaml:"server-model"` |
| 10 | + SRequest string `mapstructure:"server-request" json:"serverRequest" yaml:"server-request"` |
| 11 | + SRouter string `mapstructure:"server-router" json:"serverRouter" yaml:"server-router"` |
| 12 | + SService string `mapstructure:"server-service" json:"serverService" yaml:"server-service"` |
| 13 | + Web string `mapstructure:"web" json:"web" yaml:"web"` |
| 14 | + WApi string `mapstructure:"web-api" json:"webApi" yaml:"web-api"` |
| 15 | + WForm string `mapstructure:"web-form" json:"webForm" yaml:"web-form"` |
| 16 | + WTable string `mapstructure:"web-table" json:"webTable" yaml:"web-table"` |
| 17 | + WFlow string `mapstructure:"web-flow" json:"webFlow" yaml:"web-flow"` |
17 | 18 | } |
0 commit comments