mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
4 lines
120 B
TypeScript
4 lines
120 B
TypeScript
import { exec } from "node:child_process";
|
|
import util from "node:util";
|
|
export const execAsync = util.promisify(exec);
|