Files
FileStreamBot-Caduceus/bot/modules/static.py
2024-11-20 15:29:44 +05:30

44 lines
648 B
Python

WelcomeText = \
"""
Hi **%(first_name)s**, send me a file to instantly generate file links.
"""
PrivacyText = \
"""
This bot securely stores your files to deliver its service.
"""
FileLinksText = \
"""
**Download Link:**
`%(dl_link)s`
"""
MediaLinksText = \
"""
**Download Link:**
`%(dl_link)s`
**Stream Link:**
`%(stream_link)s`
"""
InvalidQueryText = \
"""
Query data mismatched.
"""
MessageNotExist = \
"""
File revoked or not exist.
"""
LinkRevokedText = \
"""
The link has been revoked. It may take some time for the changes to take effect.
"""
InvalidPayloadText = \
"""
Invalid payload.
"""