source: python-cinema-club-bot/commands/__init__.py@ 1f94544

Last change on this file since 1f94544 was 1f94544, checked in by Mikhail Kirillov <w96k@…>, on Oct 10, 2024 at 6:53:36 AM

Remove /movies_remove command.

  • Property mode set to 100644
File size: 744 bytes
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 .meta import about
13from .users import set_users, add_users, list_users, remove_users, \
14 chooser_user, who_is_next
15from .movie import movie, movies
16from .event import create_event, list_events
17from .announce import create_announcement
18
Note: See TracBrowser for help on using the repository browser.