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

9 lines
207 B
Python
Executable File

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