manifest.json.integration.py inheriting from Integration base class.integration.ps1 script.from services.integration_base import Integration
from services.service_registry import service_registry
class MyIntegration(Integration):
async def async_setup(self):
service_registry.register(self.domain, "hello", self.hello)
return True
async def hello(self, data):
return {"response": "World"}