import httpClient from './httpClient'; export const authService = { login(username, password) { return httpClient.post('/auth', { username, password }); }, };