diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-02 01:41:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-02 01:41:37 +0200 |
commit | 6c4fb2a9d5bf0fde77a6633cb244828852559b04 (patch) | |
tree | e39555afb74c2fdc561679cac9567ef0a4519b03 /server/src/bin/graph_summary.rs | |
parent | 52e7384c955d6fcfe5d522c3c4d5258de38f3507 (diff) | |
download | hurrycurry-6c4fb2a9d5bf0fde77a6633cb244828852559b04.tar hurrycurry-6c4fb2a9d5bf0fde77a6633cb244828852559b04.tar.bz2 hurrycurry-6c4fb2a9d5bf0fde77a6633cb244828852559b04.tar.zst |
move things around, add scoreboards load/save module
Diffstat (limited to 'server/src/bin/graph_summary.rs')
-rw-r--r-- | server/src/bin/graph_summary.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/bin/graph_summary.rs b/server/src/bin/graph_summary.rs index 2c97799a..374d9521 100644 --- a/server/src/bin/graph_summary.rs +++ b/server/src/bin/graph_summary.rs @@ -23,7 +23,7 @@ use std::collections::HashSet; #[tokio::main] async fn main() -> Result<()> { let mut index = DataIndex::default(); - index.reload()?; + index.reload().await?; println!("digraph {{"); |