Files
2026-DEV-BUT3/my-library/src/api/customers.js
T

9 lines
262 B
JavaScript
Raw Normal View History

2026-06-11 07:27:37 -04:00
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)}`);
}