Files
2020-06-13 03:48:57 +02:00

8 lines
172 B
JavaScript

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