mirror of
https://github.com/SantaSpeen/Rcon-VK-Bot.git
synced 2026-02-16 10:30:57 +00:00
21 lines
345 B
Python
21 lines
345 B
Python
try:
|
|
import Bot
|
|
import logger
|
|
except ImportError:
|
|
Bot = object
|
|
|
|
|
|
class Plugin(Bot):
|
|
|
|
ac_dir = "./perms"
|
|
|
|
def __init__(self):
|
|
super(Plugin, self).__init__()
|
|
logger.info(f"Инициализация {self.name} v{self.version}")
|
|
|
|
async def load(self):
|
|
pass
|
|
|
|
async def unload(self):
|
|
pass
|