neon.go 368 B

12345678910111213
  1. package repository
  2. import (
  3. "context"
  4. ints "github.com/porter-dev/porter/internal/models/integrations"
  5. )
  6. // NeonIntegrationRepository represents the set of queries on an Neon integration
  7. type NeonIntegrationRepository interface {
  8. // Insert creates a new neon integration
  9. Insert(ctx context.Context, neonInt ints.NeonIntegration) (ints.NeonIntegration, error)
  10. }