export default class Status {
  static PENDING = 1;
  static RUNNING = 2;
  static DONE = 3;
  static FAILED = 4;
}
