mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-09-26 19:31:18 +08:00
16 lines
234 B
Go
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"
|
|
}
|