mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
feat: add http gateway (#3)
This commit is contained in:
@@ -1,8 +1,14 @@
|
||||
import { Command } from 'commander';
|
||||
import { create } from './runs.create.js';
|
||||
import { list } from './runs.list.js';
|
||||
import { remove } from './runs.remove.js';
|
||||
import { terminate } from './runs.terminate.js';
|
||||
|
||||
const runs = new Command('runs');
|
||||
runs.description('Manage runs').addCommand(create).addCommand(list);
|
||||
runs.description('Manage runs');
|
||||
runs.addCommand(create);
|
||||
runs.addCommand(list);
|
||||
runs.addCommand(remove);
|
||||
runs.addCommand(terminate);
|
||||
|
||||
export { runs };
|
||||
|
||||
Reference in New Issue
Block a user