8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
#!/usr/bin/env bun
|
|
import {
|
|
runDeployDesiredStatePlanCli,
|
|
writeDeployDesiredStatePlanError
|
|
} from "./src/deploy-desired-state-plan.mjs";
|
|
|
|
runDeployDesiredStatePlanCli().catch(writeDeployDesiredStatePlanError);
|