diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | src/main.rs | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,3 +2,4 @@ # SPDX-License-Identifier: CC0-1.0 /target +/mqttr.toml diff --git a/src/main.rs b/src/main.rs index c5299a3..266e915 100644 --- a/src/main.rs +++ b/src/main.rs @@ -81,7 +81,7 @@ async fn main() -> anyhow::Result<()> { for (topic, programs) in conf.routes.iter() { if topic_match(&topic, &p.topic) { for program in programs { - // TODO: Eww + // TODO: Switch to moro_local to avoid this ewwyness let program = program.clone(); let p = p.clone(); tokio::spawn(async move { |