Files
factorio-server-manager/ui/api/resources/user.js
Jan Naahs 9aae0b84d3 wip
2020-06-10 15:15:00 +02:00

12 lines
298 B
JavaScript

import client from "../client";
export default {
status: async () => {
const response = await client.get('/api/user/status');
return response.data;
},
login: async data => {
const response = await client.post('/api/login');
return response.data;
}
}