import WebhookController from './WebhookController'
import NotificationController from './NotificationController'
import PackagePricingController from './PackagePricingController'
import PaymentMethodController from './PaymentMethodController'
import PaymentController from './PaymentController'
import InvoiceController from './InvoiceController'
import UsageController from './UsageController'
import PaymentWebhookController from './PaymentWebhookController'

const Api = {
    WebhookController: Object.assign(WebhookController, WebhookController),
    NotificationController: Object.assign(NotificationController, NotificationController),
    PackagePricingController: Object.assign(PackagePricingController, PackagePricingController),
    PaymentMethodController: Object.assign(PaymentMethodController, PaymentMethodController),
    PaymentController: Object.assign(PaymentController, PaymentController),
    InvoiceController: Object.assign(InvoiceController, InvoiceController),
    UsageController: Object.assign(UsageController, UsageController),
    PaymentWebhookController: Object.assign(PaymentWebhookController, PaymentWebhookController),
}

export default Api