9 lines
132 B
Python

import abc
class Formatter(abc.ABC):
@abc.abstractmethod
def format(self, info: dict):
raise NotImplementedError