Files
client_panel/app/components/Pterodactyl/index.tsx
2024-08-31 23:41:42 +00:00

20 lines
423 B
TypeScript

import filesModule from "./files";
import helpersModule from "./helpers";
class Pterodactyl {
server_id: string;
api_key: string;
files: any;
helpers: any;
workingDirectory: string = "/";
constructor(server_id: string, api_key: string) {
this.server_id = server_id;
this.api_key = api_key;
this.files = filesModule(this);
this.helpers = helpersModule(this);
}
}
export default Pterodactyl;