unity-builder/src/model/cloud-runner/remote-client/index.ts

12 lines
270 B
TypeScript

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