mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 08:01:16 +00:00
11 lines
163 B
Protocol Buffer
11 lines
163 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package tasks;
|
|
|
|
option go_package = "warmbly/internal/tasks/proto;proto";
|
|
|
|
message ProcessTask {
|
|
// UUID of the task
|
|
string task_id = 2;
|
|
}
|