You've already forked factorio-server-manager
mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-07-05 00:38:51 +02:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
import client from "../client";
|
|
|
|
export default {
|
|
tail: async () => {
|
|
const response = await client.get('/api/log/tail');
|
|
return response.data;
|
|
},
|
|
} |