mirror of
https://github.com/falcosecurity/falco.git
synced 2025-07-01 17:12:21 +00:00
docs(userspace/falco): document version protobuf
Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>
This commit is contained in:
parent
5e8f98ea92
commit
8d49e45d44
@ -1,6 +1,6 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package falco;
|
||||
package falco.version;
|
||||
|
||||
option go_package = "github.com/falcosecurity/client-go/pkg/api/version";
|
||||
|
||||
@ -10,11 +10,14 @@ service service {
|
||||
rpc version(request) returns (response);
|
||||
}
|
||||
|
||||
// The `request` message is an empty one.
|
||||
message request
|
||||
{
|
||||
// empty message
|
||||
}
|
||||
|
||||
// The `response` message contains the version of Falco.
|
||||
// It provides the whole version as a string and also
|
||||
// its parts as per semver 2.0 specification (https://semver.org).
|
||||
message response
|
||||
{
|
||||
string version = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user