7 lines
135 B
Python
7 lines
135 B
Python
from abc import ABC
|
|
from msg_container import MsgContainer
|
|
|
|
class ABackend(ABC):
|
|
def send(self, name: str, msg: MsgContainer):
|
|
pass
|