export * from './bookingServer.service'
import { BookingServerService } from './bookingServer.service'
export * from './customer.service'
import { CustomerService } from './customer.service'
export * from './default.service'
import { DefaultService } from './default.service'
export * from './webhook.service'
import { WebhookService } from './webhook.service'
export const APIS = [BookingServerService, CustomerService, DefaultService, WebhookService]
