ic_http_certification/cel/mod.rs
1//! The CEL module contains functions and builders for creating CEL expression
2//! definitions and converting them into their `String` representation.
3
4mod cel_builder;
5pub use cel_builder::*;
6
7mod cel_types;
8pub use cel_types::*;
9
10mod create_cel_expr;
11pub use create_cel_expr::*;
12
13#[cfg(test)]
14mod fixtures;