piral-cli
Version:
The standard CLI for creating and building a Piral instance or a Pilet.
17 lines (13 loc) • 314 B
text/typescript
import { PlatformStartShellOptions, PlatformStartModuleOptions } from '../types';
async function startModule(options: PlatformStartModuleOptions) {
//TODO
}
async function startShell(options: PlatformStartShellOptions) {
//TODO
}
export function setup() {
return {
startModule,
startShell,
};
}