mirror of
https://github.com/esphome/esphome.git
synced 2026-09-23 21:14:03 +00:00
13 lines
170 B
C++
13 lines
170 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
|
|
namespace esphome {
|
|
|
|
using std::make_optional;
|
|
using std::nullopt;
|
|
using std::nullopt_t;
|
|
using std::optional;
|
|
|
|
} // namespace esphome
|