summaryrefslogtreecommitdiff
path: root/src/input.rs
diff options
context:
space:
mode:
authorFxQnLr <[email protected]>2022-12-19 16:48:21 +0100
committerFxQnLr <[email protected]>2022-12-19 16:48:21 +0100
commitf87ac1a38af96087e8a6927a6cad7ca19b48d76d (patch)
treea7d2e9e18beeaab35007ca7510137f0f9b3b557b /src/input.rs
parent28706f6edf10a135a67334d7035948bab4064bef (diff)
downloadmodlist-f87ac1a38af96087e8a6927a6cad7ca19b48d76d.tar
modlist-f87ac1a38af96087e8a6927a6cad7ca19b48d76d.tar.gz
modlist-f87ac1a38af96087e8a6927a6cad7ca19b48d76d.zip
basic io implementation finished
Diffstat (limited to 'src/input.rs')
-rw-r--r--src/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input.rs b/src/input.rs
index ffc1213..09d05a1 100644
--- a/src/input.rs
+++ b/src/input.rs
@@ -144,7 +144,7 @@ pub async fn get_input(config: Cfg) -> Result<(), Box<dyn std::error::Error>> {
144 download(config, input).await 144 download(config, input).await
145 }, 145 },
146 Cmd::Io => { 146 Cmd::Io => {
147 io(config, input) 147 io(config, input).await
148 } 148 }
149 } 149 }
150} 150}