docs: add module docstring to base.py

This commit is contained in:
andikarachman 2026-01-03 09:32:55 +07:00
parent 69c25b43d7
commit e168c2b86b

View file

@ -1,3 +1,11 @@
"""
Base classes for translation providers.
This module defines the abstract interface that all translation providers must implement.
Providers handle the actual translation of text using external services like OpenAI,
Google Translate, or Azure Translator.
"""
from abc import ABC, abstractmethod
from dataclasses import dataclass
from typing import Optional