mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { Command } from 'commander';
|
|
import { run } from './local.run.js';
|
|
|
|
const local = new Command('local');
|
|
|
|
local.addCommand(run);
|
|
|
|
export { local };
|