| 12345678910111213141516171819202122 |
- package test
- import (
- "context"
- ints "github.com/porter-dev/porter/internal/models/integrations"
- "github.com/porter-dev/porter/internal/repository"
- )
- type NeonIntegrationRepository struct{}
- func NewNeonIntegrationRepository(canQuery bool) repository.NeonIntegrationRepository {
- return &NeonIntegrationRepository{}
- }
- func (s *NeonIntegrationRepository) Insert(ctx context.Context, neonInt ints.NeonIntegration) (ints.NeonIntegration, error) {
- panic("not implemented") // TODO: Implement
- }
- func (s *NeonIntegrationRepository) Integrations(ctx context.Context, projectID uint) ([]ints.NeonIntegration, error) {
- panic("not implemented") // TODO: Implement
- }
|