satupeta-main/app/services/classification_service.py

10 lines
335 B
Python
Raw Normal View History

2026-01-27 02:11:58 +00:00
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)