2022-03-29 22:47:54 +02:00

7 lines
86 B
Python

import abc
class Formatter(abc.ABC):
def format(self, info: dict):
pass