mirror of
https://github.com/google/santa.git
synced 2026-01-14 08:47:57 -05:00
14 lines
183 B
Protocol Buffer
14 lines
183 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package santa.pb.v1.process_tree;
|
|
|
|
message Annotations {
|
|
enum Originator {
|
|
UNSPECIFIED = 0;
|
|
LOGIN = 1;
|
|
CRON = 2;
|
|
}
|
|
|
|
Originator originator = 1;
|
|
}
|