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 }