RegisterBillingRoutes registers routes for the /billing prefix
()
| 1675 | |
| 1676 | // RegisterBillingRoutes registers routes for the /billing prefix |
| 1677 | func (container *Container) RegisterBillingRoutes() { |
| 1678 | container.logger.Debug(fmt.Sprintf("registering %T routes", &handlers.BillingHandler{})) |
| 1679 | container.BillingHandler().RegisterRoutes(container.App(), container.AuthenticatedMiddleware()) |
| 1680 | } |
| 1681 | |
| 1682 | // RegisterWebhookRoutes registers routes for the /webhooks prefix |
| 1683 | func (container *Container) RegisterWebhookRoutes() { |
no test coverage detected