mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
10 lines
306 B
Go
10 lines
306 B
Go
package model
|
|
|
|
type Sslconfig struct {
|
|
Id int `gorm:"primary_key" json:" - "` //
|
|
Tenant_id string `json:"tenant_id"` //
|
|
Code string `json:"code"` //
|
|
Certfile string `json:"certfile"` //
|
|
Keyfile string `json:"keyfile"` //
|
|
}
|