Skip to content

Commit

Permalink
feat: add version proto
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed Sep 11, 2023
1 parent dfe9687 commit e9a80d7
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 29 deletions.
139 changes: 111 additions & 28 deletions types/api/v1beta1/definition.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion types/api/v1beta1/definition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package tracee.v1beta1;
message EventDefinition {
int32 id = 1;
string name = 2;
string version= 3;
Version version= 3;
string description = 4 ;
repeated string tags = 5;
repeated Param params = 6;
Expand All @@ -17,3 +17,9 @@ message Param {
string name = 1;
string type = 2;
}

message Version {
uint32 major = 1;
uint32 minor = 2;
uint32 patch = 3;
}

0 comments on commit e9a80d7

Please sign in to comment.