global: snapshot

This commit is contained in:
nym21
2025-02-27 12:32:54 +01:00
parent 677aca7a03
commit 877f9299e1
53 changed files with 259 additions and 203 deletions

View File

@@ -1,13 +1,13 @@
use std::path::Path;
use brk_computer::Computer;
use brk_exit::Exit;
use brk_indexer::Indexer;
use hodor::Hodor;
pub fn main() -> color_eyre::Result<()> {
color_eyre::install()?;
let hodor = Hodor::new();
let exit = Exit::new();
let i = std::time::Instant::now();
@@ -17,7 +17,7 @@ pub fn main() -> color_eyre::Result<()> {
let mut computer = Computer::import(&outputs_dir.join("computed"))?;
computer.compute(indexer, &hodor)?;
computer.compute(indexer, &exit)?;
dbg!(i.elapsed());