-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Mateusz edited this page Aug 31, 2021
·
4 revisions
Wiki listing all the functions and managers [ WIP ]
const { AdminInstance } = require('pterowrap');
const url = "https://pterodactyl.app/api/" //process.env.API_URL -- use this
const key = "meowmeowmeow" //process.env.API_KEY -- use this
const client = new AdminInstance(url, key);
(async () => {
const server = await client.servers.get(5)
console.log(server.name)
})();
Created by: Mateusz#1738