Skip to content

Commit

Permalink
Rename network moduel to MQTT
Browse files Browse the repository at this point in the history
  • Loading branch information
lptr committed Aug 10, 2024
1 parent aa81c8b commit f20c1ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kernel/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod mdns;
mod network;
mod mqtt;
mod rtc;
mod wifi;

Expand Down Expand Up @@ -71,7 +71,7 @@ impl Device {
let mdns = EspMdns::take()?;
let (sntp, mqtts) = join(
rtc::init_rtc(&mdns),
network::init_mqtt(&mdns, &config.instance),
mqtt::init_mqtt(&mdns, &config.instance),
)
.await;
let (mqtt, conn, topic_root) = mqtts?;
Expand Down
File renamed without changes.

0 comments on commit f20c1ec

Please sign in to comment.