sycgram/core/__init__.py

14 lines
199 B
Python
Raw Normal View History

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