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