Files
git-insights-cli/src/formatters/base.py
7000pctAUTO 77c3f08194
Some checks failed
CI / test (push) Has been cancelled
Add models, analyzers, and formatters
2026-02-01 07:58:04 +00:00

13 lines
246 B
Python

from abc import ABC, abstractmethod
from typing import Any
class BaseFormatter(ABC):
"""Base formatter interface."""
@staticmethod
@abstractmethod
def format(data: Any) -> str:
"""Format data to string."""
pass