config.go 304 B

12345678910111213
  1. package types
  2. type DifySandboxGlobalConfigurations struct {
  3. App struct {
  4. Port int `yaml:"port"`
  5. Debug bool `yaml:"debug"`
  6. Key string `yaml:"key"`
  7. } `yaml:"app"`
  8. MaxWorkers int `yaml:"max_workers"`
  9. MaxRequests int `yaml:"max_requests"`
  10. WorkerTimeout int `yaml:"worker_timeout"`
  11. }