9 lines
161 B
Python
9 lines
161 B
Python
import abc
|
|
from typing import Iterable
|
|
|
|
|
|
class Packer(abc.ABC):
|
|
@abc.abstractmethod
|
|
def __call__(self, data: Iterable, metadata: Iterable):
|
|
pass
|