mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-06 11:35:25 +00:00
10 lines
115 B
Rust
10 lines
115 B
Rust
use criterion::criterion_main;
|
|
|
|
pub mod main {
|
|
pub mod ui;
|
|
}
|
|
|
|
pub use main::*;
|
|
|
|
criterion_main!(ui::benches,);
|