Files
Home_assistant/backend/app/homelab_scoped/notices.py
T
2026-06-13 20:20:56 +00:00

6 lines
175 B
Python

from app.chat.notice_inbox import post_notice_to_latest_chat
def post_chat_notice(content: str, user_id: int) -> None:
post_notice_to_latest_chat(content, user_id)