minecluster/lib/app.ts

13 lines
268 B
TypeScript
Raw Normal View History

// @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)});