Files
frp-panel/models/cert.go
2024-01-16 02:48:24 +08:00

16 lines
216 B
Go

package models
import "gorm.io/gorm"
type Cert struct {
gorm.Model
Name string `gorm:"uniqueIndex"`
CertFile []byte
KeyFile []byte
CaFile []byte
}
func (c *Cert) TableName() string {
return "certs"
}