You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
526 B
26 lines
526 B
2 years ago
|
# -*- coding: utf8 -*-
|
||
|
# Общественное достояние, 2023, Алексей Безбородов (Alexei Bezborodov) <AlexeiBv+mirocod_platform_bot@narod.ru>
|
||
|
|
||
|
from abc import ABC, abstractmethod
|
||
|
|
||
|
class IModule(ABC):
|
||
|
@abstractmethod
|
||
|
def GetName():
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def GetInitBDCommands():
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def GetAccess():
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def GetModuleButtons():
|
||
|
pass
|
||
|
|
||
|
@abstractmethod
|
||
|
def RegisterHandlers():
|
||
|
pass
|