Add Chef language implementation

This commit is contained in:
Nilay Majorwar
2022-01-17 20:57:38 +05:30
parent eb9d5d861c
commit 65aa9c9ecd
25 changed files with 2696 additions and 0 deletions

4
engines/chef/engine.ts Normal file
View File

@@ -0,0 +1,4 @@
import { setupWorker } from "../setup-worker";
import ChefRuntime from "./runtime";
setupWorker(new ChefRuntime());