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

12 lines
270 B
TypeScript
Raw Normal View History

import { DownloadRepository } from './remote-steps/download-repository';
2021-12-13 22:21:26 +00:00
export class RemoteClientCli {
static async RunRemoteClient(options) {
switch (options.remoteClientState) {
default:
await DownloadRepository.run();
break;
}
}
}