sycgram/core/__init__.py

17 lines
263 B
Python
Raw Normal View History

2022-04-09 03:54:00 +00:00
from .custom import command, CMDS_DATA, CMDS_PREFIX
2022-04-06 14:39:27 +00:00
from pyrogram import Client
app = Client(
"./data/app",
config_file='./data/config.ini',
plugins=dict(root="plugins")
)
__all__ = (
2022-04-09 03:54:00 +00:00
'app',
'command',
'CMDS_DATA',
'CMDS_PREFIX',
2022-04-06 14:39:27 +00:00
)