DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-proto

ref: 8aa1fdcc154e6f7b62c29356fc8d34dffa4f1fe4 emerwen-proto/proto/shared/target.proto -rw-r--r-- 397 bytes
8aa1fdccJonni Liljamo feat!: iteration number whatever, revamp whooo! 8 hours ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
syntax = "proto3";
package emerwen.shared;

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

message Target {
    string target_id = 1;
    string addr = 2;
    int32 interval = 3;
    string name = 4;
    Method method = 5;
    repeated int32 ok_codes = 6;
}

enum Method {
    PING = 0;
    GET = 1;
}

enum TargetState {
    DOWN = 0;
    UP = 1;
    UNKNOWN = 2;
}