Skip to main content

stylex_macros/
lib.rs

1pub mod collection_macros;
2pub mod conversion_macros;
3pub mod panic_macros;
4pub mod stylex_error;
5
6#[cfg(test)]
7mod tests {
8  use ctor::ctor;
9
10  #[ctor]
11  fn init_logger() {
12    pretty_env_logger::formatted_builder().try_init();
13  }
14}