Files
factorio-server-manager/ui/api/resources/user.js
Jan Naahs 2b3886de6e wip
2020-06-09 23:41:08 +02:00

8 lines
176 B
JavaScript

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