neon.go 203 B

123456789101112
  1. package integrations
  2. import "gorm.io/gorm"
  3. // NeonIntegration is an integration for the Neon service
  4. type NeonIntegration struct {
  5. gorm.Model
  6. ProjectID uint `json:"project_id"`
  7. SharedOAuthModel
  8. }