mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-03 11:45:21 +00:00
15 lines
261 B
Protocol Buffer
15 lines
261 B
Protocol Buffer
syntax = "proto3";
|
|
package copy_status;
|
|
|
|
option go_package = "github.com/samuelncui/tapemanager/entity";
|
|
|
|
enum CopyStatus {
|
|
DRAFT = 0;
|
|
PENDING = 1; // waiting in queue
|
|
RUNNING = 2;
|
|
STAGED = 3;
|
|
SUBMITED = 4;
|
|
|
|
FAILED = 255;
|
|
}
|