mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
16 lines
216 B
Go
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"
|
|
}
|