WIP: export and import
This commit is contained in:
23
plugins/commands/photos.py
Normal file
23
plugins/commands/photos.py
Normal file
@@ -0,0 +1,23 @@
|
||||
from os import getpid
|
||||
|
||||
from pyrogram import filters
|
||||
from classes.poster_client import PosterClient
|
||||
from pyrogram.types import Message
|
||||
|
||||
from modules.app import app
|
||||
from modules.logger import logWrite
|
||||
from modules.utils import configGet, killProc, locale
|
||||
|
||||
|
||||
@app.on_message(~ filters.scheduled & filters.command(["import"], prefixes=["", "/"]))
|
||||
async def cmd_import(app: PosterClient, msg: Message):
|
||||
|
||||
if msg.from_user.id == configGet("admin"):
|
||||
pass
|
||||
|
||||
|
||||
@app.on_message(~ filters.scheduled & filters.command(["export"], prefixes=["", "/"]))
|
||||
async def cmd_export(app: PosterClient, msg: Message):
|
||||
|
||||
if msg.from_user.id == configGet("admin"):
|
||||
pass
|
Reference in New Issue
Block a user