INTO-CPS-Association/DTaaS

View on GitHub
servers/execution/runner/src/interfaces/runner.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export default interface Runner {
  run(): Promise<boolean>;
  checkLogs(): Map<string, string>;
}