Files
frp-panel/models/cert.go
2025-04-29 16:49:02 +00:00

16 lines
234 B
Go

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