7 lines
91 B
Python
7 lines
91 B
Python
from abc import ABC
|
|
|
|
|
|
class ABackend(ABC):
|
|
def send(self, name: str, data: bytes):
|
|
pass
|