satupeta-main/app/services/classification_service.py
2026-01-27 09:11:58 +07:00

10 lines
335 B
Python

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)