source: python-cinema-club-bot/commands/meta.py@ 9be02d9

Last change on this file since 9be02d9 was cc34991, checked in by Mikhail Kirillov <w96k@…>, on Oct 9, 2024 at 3:09:50 AM

Add commands modules; Added /chooser command

  • Property mode set to 100644
File size: 1.4 KB
Line 
1# This file is part of python-cinema-club-bot
2# contributed in 2024 by Mikhail Kirillov (~w96k) <w96k@runbox.com>
3
4# To the extent possible under law, the author(s) have dedicated all copyright
5# and related and neighboring rights to this software to the public domain
6# worldwide. This software is distributed without any warranty.
7
8# You should have received a copy of the CC0 Public Domain Dedication along
9# with this software. If not, see:
10# <http://creativecommons.org/publicdomain/zero/1.0/>
11
12from telegram import Update
13from telegram.ext import ContextTypes
14
15
16async def about(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
17 await update.message.reply_text('''
18Version InDev
19
20python-cinema-club-bot is a bot for Telegram specialized for managing cinema club activities. This software is released as Public Domain using CC0 license.
21
22Project information: http://57.129.46.169/trac/wiki/python-cinema-club-bot
23Source code: http://57.129.46.169/cgit/python-cinema-club-bot/
24
25Contributed in 2024 by Mikhail Kirillov (~w96k) <w96k@runbox.com>
26
27To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
28
29You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see:
30<http://creativecommons.org/publicdomain/zero/1.0/>
31
32 ''')
Note: See TracBrowser for help on using the repository browser.