upstream_config.go 178 B

1234567
  1. package model
  2. type UpstreamConfig struct {
  3. Model
  4. Socket string `json:"socket" gorm:"uniqueIndex"` // host:port address
  5. Enabled bool `json:"enabled" gorm:"default:true"`
  6. }