Files
factorio-server-manager/ui/api/resources/user.js
Jan Naahs a0ab6ea39a wip
2020-06-10 21:44:02 +02:00

12 lines
320 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', JSON.stringify(data));
return response.data;
}
}