mirror of
https://github.com/chaitin/SafeLine.git
synced 2026-02-03 07:13:25 +08:00
12 lines
368 B
Go
12 lines
368 B
Go
package model
|
|
|
|
// WebsiteConfig is supposed to be same with webserver/model/website.go
|
|
type WebsiteConfig struct {
|
|
Id int `json:"id"`
|
|
ServerNames []string `json:"server_names"`
|
|
Ports []string `json:"ports"`
|
|
Upstreams []string `json:"upstreams"`
|
|
CertFilename string `json:"cert_filename"`
|
|
KeyFilename string `json:"key_filename"`
|
|
}
|