mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
8 lines
178 B
Go
8 lines
178 B
Go
package model
|
|
|
|
type UpstreamConfig struct {
|
|
Model
|
|
Socket string `json:"socket" gorm:"uniqueIndex"` // host:port address
|
|
Enabled bool `json:"enabled" gorm:"default:true"`
|
|
}
|