All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
52 lines
1.9 KiB
Rust
52 lines
1.9 KiB
Rust
// @generated
|
|
// This file is @generated by prost-build.
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct GetKeyRequest {
|
|
#[prost(string, tag="1")]
|
|
pub namespace: ::prost::alloc::string::String,
|
|
#[prost(string, optional, tag="2")]
|
|
pub id: ::core::option::Option<::prost::alloc::string::String>,
|
|
#[prost(string, tag="3")]
|
|
pub key: ::prost::alloc::string::String,
|
|
}
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct GetKeyResponse {
|
|
#[prost(string, optional, tag="1")]
|
|
pub value: ::core::option::Option<::prost::alloc::string::String>,
|
|
}
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct SetKeyRequest {
|
|
#[prost(string, tag="1")]
|
|
pub namespace: ::prost::alloc::string::String,
|
|
#[prost(string, optional, tag="2")]
|
|
pub id: ::core::option::Option<::prost::alloc::string::String>,
|
|
#[prost(string, tag="3")]
|
|
pub key: ::prost::alloc::string::String,
|
|
#[prost(string, tag="4")]
|
|
pub value: ::prost::alloc::string::String,
|
|
}
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
|
|
pub struct SetKeyResponse {
|
|
}
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct ListenEventsRequest {
|
|
#[prost(string, tag="1")]
|
|
pub namespace: ::prost::alloc::string::String,
|
|
#[prost(string, optional, tag="2")]
|
|
pub id: ::core::option::Option<::prost::alloc::string::String>,
|
|
}
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct ListenEventsResponse {
|
|
#[prost(string, tag="1")]
|
|
pub id: ::prost::alloc::string::String,
|
|
#[prost(string, tag="2")]
|
|
pub value: ::prost::alloc::string::String,
|
|
}
|
|
include!("churn.v1.tonic.rs");
|
|
// @@protoc_insertion_point(module)
|