Skip to content

Commit

Permalink
2.3.2 (#3)
Browse files Browse the repository at this point in the history
Added Anonymous Admin Verification support in command handler , callback handler (for bot , user and both  rights)
  • Loading branch information
AshokShau authored Jul 13, 2023
2 parents 919cb50 + 6cdfafd commit d58919a
Show file tree
Hide file tree
Showing 11 changed files with 277 additions and 222 deletions.
4 changes: 2 additions & 2 deletions Abg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import logging as log
from datetime import datetime

__version__ = "2.3.1"
__version__ = "2.3.2"
__copyright__ = (
f"Copyright 2023 - {datetime.now().year} Abishnoi69 <github.com/Abishnoi69>"
)

LOGGER = log.getLogger("Abg")

from . import chat_status, inline, patch
from . import inline, patch

LOGGER.info(f"Version: {__version__}\nCopyright: {__copyright__}")

Expand Down
4 changes: 0 additions & 4 deletions Abg/chat_status/__init__.py

This file was deleted.

125 changes: 0 additions & 125 deletions Abg/chat_status/chat_status.py

This file was deleted.

79 changes: 0 additions & 79 deletions Abg/chat_status/custom_filters.py

This file was deleted.

7 changes: 4 additions & 3 deletions Abg/patch/decorators/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .callback import callback
from .command import command
from .adminsOnly import adminsOnly
from .on_cb import callback
from .on_cmd import command

__all__ = ["callback", "command"]
__all__ = ["adminsOnly", "callback", "command"]
Loading

0 comments on commit d58919a

Please sign in to comment.