sycgram/core/__init__.py
2022-04-06 22:39:27 +08:00

14 lines
199 B
Python

from .custom import command
from pyrogram import Client
app = Client(
"./data/app",
config_file='./data/config.ini',
plugins=dict(root="plugins")
)
__all__ = (
'app', 'command',
)