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