refactor: legacyPackages

This commit is contained in:
2025-10-10 13:13:03 +00:00
parent 7d55064a44
commit 65fa944df8
18 changed files with 497 additions and 174 deletions

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