initial virtual sensor with protobuf

This commit is contained in:
Michael Sippel 2025-03-17 10:14:41 +01:00
commit cbee09be85
Signed by: senvas
GPG key ID: F96CF119C34B64A6
7 changed files with 326 additions and 0 deletions

21
database.proto Normal file
View file

@ -0,0 +1,21 @@
syntax = "proto3";
message DatabaseStatus {
}
message TimeInterval {
}
message DataSlice {
}
service Database {
rpc get_status () returns (DatabaseStatus) {}
rpc fetch_data (TimeInterval) returns (DataSlice) {}
}