You've already forked factorio-server-manager
mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-12-03 23:20:28 +02:00
8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
|
|
import client from "../client";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
list: async () => {
|
||
|
|
const response = await client.get('/api/saves/list');
|
||
|
|
return response.data;
|
||
|
|
},
|
||
|
|
}
|