[TS] Renamed file extensions to typescript

This commit is contained in:
Dunemask 2024-03-29 16:45:43 -06:00
parent 4d5b347767
commit 4a6f20fa7b
31 changed files with 12 additions and 0 deletions

12
lib/app.ts Normal file
View file

@ -0,0 +1,12 @@
// @ts-nocheck
import k8s from "@kubernetes/client-node";
import Minecluster from "./Minecluster.js";
const mcl = new Minecluster();
mcl.start();
async function main(){
const kc = new k8s.KubeConfig();
kc.loadFromDefault();
}
main().catch((e)=>{console.error(e)});