UNPKG

@acurast/cli

Version:

A cli to interact with the Acurast Cloud.

10 lines 306 B
export const addCommandRun = (program) => { program .command('run [project]') .alias('serve') .description('(v2) Run the project locally for development') .action(async (project) => { throw new Error('Not implemented'); }); }; //# sourceMappingURL=run.js.map