WIP
All checks were successful
Build and deploy / build (push) Successful in 10m15s
Build and deploy / Deploy container (push) Has been skipped

This commit is contained in:
2025-10-19 07:21:57 +02:00
parent a0c5189ada
commit 1766a7b175
10 changed files with 536 additions and 392 deletions

15
config/ntfy.lua Normal file
View File

@@ -0,0 +1,15 @@
local devices = require("automation:devices")
local secrets = require("automation:secrets")
local module = {}
local ntfy_topic = secrets.ntfy_topic
if ntfy_topic == nil then
error("Ntfy topic is not specified")
end
module.device = devices.Ntfy.new({
topic = ntfy_topic,
})
return module