mirror of
https://github.com/itsjunetime/tdf.git
synced 2026-06-01 23:51:46 -04:00
14 lines
229 B
Rust
14 lines
229 B
Rust
mod utils;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
#[cfg(feature = "tracing")]
|
|
console_subscriber::init();
|
|
|
|
let file = std::env::args()
|
|
.nth(1)
|
|
.expect("Please enter a file to profile");
|
|
|
|
utils::render_doc(file, None).await;
|
|
}
|