mirror of
https://github.com/samuelncui/yatm.git
synced 2025-12-23 06:15:22 +00:00
15 lines
254 B
Protocol Buffer
15 lines
254 B
Protocol Buffer
syntax = "proto3";
|
|
package copy_status;
|
|
|
|
option go_package = "github.com/samuelncui/yatm/entity";
|
|
|
|
enum CopyStatus {
|
|
DRAFT = 0;
|
|
PENDING = 1; // waiting in queue
|
|
RUNNING = 2;
|
|
STAGED = 3;
|
|
SUBMITED = 4;
|
|
|
|
FAILED = 255;
|
|
}
|