WebhookRepository creates a new instance of repositories.WebhookRepository
()
| 870 | |
| 871 | // WebhookRepository creates a new instance of repositories.WebhookRepository |
| 872 | func (container *Container) WebhookRepository() (repository repositories.WebhookRepository) { |
| 873 | container.logger.Debug("creating GORM repositories.WebhookRepository") |
| 874 | return repositories.NewGormWebhookRepository( |
| 875 | container.Logger(), |
| 876 | container.Tracer(), |
| 877 | container.DB(), |
| 878 | ) |
| 879 | } |
| 880 | |
| 881 | // PhoneNotificationRepository creates a new instance of repositories.PhoneNotificationRepository |
| 882 | func (container *Container) PhoneNotificationRepository() (repository repositories.PhoneNotificationRepository) { |
no test coverage detected