StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | use ctor::ctor; |
| 2 | |
| 3 | // Initialize the logger before running tests. |
| 4 | #[ctor] |
| 5 | fn init() { |
| 6 | simplelog::SimpleLogger::init(simplelog::LevelFilter::Info, simplelog::Config::default()) |
| 7 | .unwrap() |
| 8 | } |
| 9 |