14 lines
199 B
Python
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',
|
||
|
)
|