export const userProfile = { url: '/api/profile', method: 'GET', }; export const userLogout = { url: '/api/logout', method: 'POST', }; export const userLogin = { url: 'http://localhost:3000/api/user', method: 'GET', }; export const userRegister = { url: '/api/register', method: 'POST', }; export const menu = { url: '/api/menu', method: 'GET', };