import * as customers from './server/customers'; import { wrapClientAction } from '@/utils/actions'; export const addInvitedBy = wrapClientAction(customers.addInvitedBy); export const getInvited = wrapClientAction(customers.getInvited); export const getCustomer = wrapClientAction(customers.getCustomer); export const getCustomers = wrapClientAction(customers.getCustomers); export const getInvitedBy = wrapClientAction(customers.getInvitedBy); export const updateCustomer = wrapClientAction(customers.updateCustomer);