Files
factorio-server-manager/ui/api/resources/saves.js

8 lines
174 B
JavaScript
Raw Normal View History

2020-06-13 04:24:00 +02:00
import client from "../client";
export default {
list: async () => {
const response = await client.get('/api/saves/list');
return response.data;
},
}