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

9 lines
207 B
Python

from app.models import ClassificationModel
from . import BaseRepository
class ClassificationRepository(BaseRepository[ClassificationModel]):
def __init__(self, model):
super().__init__(model)