A Discord Bot connected to your Pterodactyl API.
at main 9 lines 270 B view raw
1import axios from "axios"; 2 3export default async (id) => { 4 let response = await axios.get(`/servers/${id}`); 5 const server = response.data.attributes; 6 response = await axios.get(`/servers/${id}/resources`); 7 server.stats = response.data.attributes; 8 return server; 9};