refactor: legacyPackages

This commit is contained in:
2025-10-10 13:13:03 +00:00
parent 1d0ed49431
commit a153298a2e
18 changed files with 497 additions and 174 deletions
+8
View File
@@ -1,3 +1,11 @@
#!/bin/dash
TOKEN=8448534574:AAEvsdQqhUDu3RVRJWDGIVeqRmXlB0Dqn1Q
CHAT_ID=380055934
POLLING_INTERVAL_SEC=${POLLING_INTERVAL_SEC:-3}
while true; do
curl -s -X POST "https://api.telegram.org/bot${TOKEN}/sendMessage" \
-d "chat_id=${CHAT_ID}" \
-d text="your message"
done