feat(wfe-server-protos): add gRPC service definitions for workflow server
13 RPCs in wfe.v1.Wfe service: RegisterWorkflow, StartWorkflow,
GetWorkflow, CancelWorkflow, SuspendWorkflow, ResumeWorkflow,
SearchWorkflows, PublishEvent, WatchLifecycle (stream),
StreamLogs (stream), SearchLogs, ListDefinitions.
2026-04-01 14:35:57 +01:00
|
|
|
//! Generated gRPC stubs for the WFE workflow server API.
|
|
|
|
|
//!
|
|
|
|
|
//! Built from `proto/wfe/v1/wfe.proto`. Includes both server and client code.
|
|
|
|
|
//!
|
|
|
|
|
//! ```rust,ignore
|
|
|
|
|
//! use wfe_server_protos::wfe::v1::wfe_server::WfeServer;
|
|
|
|
|
//! use wfe_server_protos::wfe::v1::wfe_client::WfeClient;
|
|
|
|
|
//! ```
|
|
|
|
|
|
|
|
|
|
#![allow(clippy::all)]
|
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/mod.rs"));
|
|
|
|
|
|
|
|
|
|
pub use prost;
|
|
|
|
|
pub use prost_types;
|
|
|
|
|
pub use tonic;
|
2026-04-06 23:47:42 +01:00
|
|
|
|
|
|
|
|
/// Encoded file descriptor set for gRPC reflection.
|
2026-04-07 18:44:21 +01:00
|
|
|
pub const FILE_DESCRIPTOR_SET: &[u8] =
|
|
|
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/wfe_descriptor.bin"));
|