mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
c835b67bac
Co-authored-by: Otto winter <otto@otto-winter.com>
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
|