mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-07 05:46:39 +00:00
15 lines
259 B
Protocol Buffer
15 lines
259 B
Protocol Buffer
syntax = "proto3";
|
|
package copy_status;
|
|
|
|
option go_package = "github.com/abc950309/tapewriter/entity";
|
|
|
|
enum CopyStatus {
|
|
Draft = 0;
|
|
Pending = 1; // waiting in queue
|
|
Running = 2;
|
|
Staged = 3;
|
|
Submited = 4;
|
|
|
|
Failed = 255;
|
|
}
|