mirror of
https://github.com/esphome/esphome.git
synced 2026-01-09 19:50:49 -07:00
19 lines
360 B
C++
19 lines
360 B
C++
#ifdef USE_HOST
|
|
|
|
#include "esphome/components/network/ip_address.h"
|
|
#include "esphome/components/network/util.h"
|
|
#include "esphome/core/log.h"
|
|
#include "mdns_component.h"
|
|
|
|
namespace esphome {
|
|
namespace mdns {
|
|
|
|
void MDNSComponent::setup() { this->compile_records_(); }
|
|
|
|
void MDNSComponent::on_shutdown() {}
|
|
|
|
} // namespace mdns
|
|
} // namespace esphome
|
|
|
|
#endif
|