12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
|
|
import { DownloadRepository } from '../steps/remote-steps/download-repository';
|
||
|
|
|
||
|
|
export class RemoteClientCli {
|
||
|
|
static async RunRemoteClient(options) {
|
||
|
|
switch (options.remoteClientState) {
|
||
|
|
default:
|
||
|
|
await DownloadRepository.run();
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|