otlp2pipeline 0.4.0

OTLP ingestion worker for Cloudflare Pipelines and AWS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// src/cli/commands/azure/mod.rs
mod cli;
mod context;
mod create;
pub mod deploy; // public for create.rs to use deploy functions
mod destroy;
mod helpers;
mod plan;
mod status;

pub use create::execute_create;
pub use destroy::execute_destroy;
pub use plan::execute_plan;
pub use status::execute_status;