9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
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)}`);
|
|
} |