aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--src/main.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index ac06f09..6abe30c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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 {