15 lines
225 B
Go
15 lines
225 B
Go
|
package model
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type Apps struct {
|
||
|
gorm.Model
|
||
|
|
||
|
Name string
|
||
|
Url string
|
||
|
WebhookUrl string
|
||
|
WebhookSecret string
|
||
|
Code string `gorm:"uniqueIndex"`
|
||
|
PrivateKey string
|
||
|
}
|