import client from './client'; export function registerCustomer(customer) { return client.post('/api/customers', customer); } export function findCustomerByPhone(phoneNumber) { return client.get(`/api/customers/phone/${encodeURIComponent(phoneNumber)}`); }