2
0

upstash.go 264 B

1234567891011121314
  1. package integrations
  2. import "gorm.io/gorm"
  3. // UpstashIntegration is an integration for the Upstash service
  4. type UpstashIntegration struct {
  5. gorm.Model
  6. ProjectID uint `json:"project_id"`
  7. SharedOAuthModel
  8. DeveloperApiKey []byte `json:"developer_api_key"`
  9. }