mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-13 14:23:10 +00:00
This needs to be tracked by git to make cargo publish work. If this folder is in the .gitignore, then cargo publish will ignore this folder as well and the publish command will fail because of missing .proto files. If we would temporarily remove / rename the .gitignore file, then cargo publish will error because the git state is dirty.
25 lines
554 B
Protocol Buffer
Vendored
25 lines
554 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
|
|
package stream;
|
|
|
|
option go_package = "github.com/chirpstack/chirpstack/api/go/v4/stream";
|
|
option java_package = "io.chirpstack.api.stream";
|
|
option java_multiple_files = true;
|
|
option java_outer_classname = "ApiRequestProto";
|
|
option csharp_namespace = "Chirpstack.Stream";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
import "common/common.proto";
|
|
import "gw/gw.proto";
|
|
|
|
message ApiRequestLog {
|
|
// API service name.
|
|
string service = 1;
|
|
|
|
// API method name.
|
|
string method = 2;
|
|
|
|
// Metadata.
|
|
map<string, string> metadata = 3;
|
|
}
|