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

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