Extract OTA backend functionality into separate ota_base component

This commit is contained in:
J. Nick Koston 2025-06-30 10:35:19 -05:00
parent 9f51546023
commit 47ad206ccd
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -49,4 +49,4 @@ void register_ota_platform(OTAComponent *ota_caller);
#endif
} // namespace ota
} // namespace esphome
} // namespace esphome

View File

@ -6,4 +6,4 @@ namespace ota_base {
// The make_ota_backend() implementation is provided by each platform-specific backend
} // namespace ota_base
} // namespace esphome
} // namespace esphome

View File

@ -57,4 +57,4 @@ class OTABackend {
std::unique_ptr<OTABackend> make_ota_backend();
} // namespace ota_base
} // namespace esphome
} // namespace esphome