| 123456789101112131415161718 |
- 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
- }
|