DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-proto

ref: 954fd142c28661bac1a5de33157d7dc17e6824f8 emerwen-proto/proto/shared/worker.proto -rw-r--r-- 278 bytes
954fd142Jonni Liljamo fix!: ids in patch requests 2 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";
package emerwen.shared;

option go_package = "git.src.quest/~liljamo/emerwen-proto/go/proto/shared";

import "shared/target.proto";

message Worker {
    string id = 1;
    string auth_token = 2;
    repeated shared.Target targets = 3;
    string name = 4;
}