otlp2pipeline 0.4.0

OTLP ingestion worker for Cloudflare Pipelines and AWS
Documentation
pub mod aws;
pub mod azure;
pub mod cloudflare;
mod connect;
mod init;
mod naming;
mod services;
mod tail;

pub use connect::{
    execute_connect_claude_code, execute_connect_codex, execute_connect_otel_collector,
};
pub use init::{execute_init, InitArgs};
pub use services::execute_services;
pub use tail::execute_tail;

// Re-export cloudflare commands for convenience
pub use cloudflare::{
    execute_bucket_delete, execute_catalog_list, execute_catalog_partition, execute_create,
    execute_destroy, execute_plan, execute_query, execute_status,
};