satupeta-main/app/services/classification_service.py
2026-02-23 12:20:42 +07:00

10 lines
335 B
Python
Executable File

from app.models import ClassificationModel
from app.repositories import ClassificationRepository
from . import BaseService
class ClassificationService(BaseService[ClassificationModel, ClassificationRepository]):
def __init__(self, repository: ClassificationRepository):
super().__init__(ClassificationModel, repository)