mirror of
https://github.com/esphome/esphome.git
synced 2025-04-11 13:20:31 +01:00
13 lines
253 B
C++
13 lines
253 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/event/event.h"
|
|
|
|
namespace esphome {
|
|
namespace template_ {
|
|
|
|
class TemplateEvent : public Component, public event::Event {};
|
|
|
|
} // namespace template_
|
|
} // namespace esphome
|