mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
7 lines
224 B
Python
7 lines
224 B
Python
from felicity.apps.abstract import BaseRepository
|
|
from felicity.apps.auditlog.entities import AuditLog
|
|
|
|
|
|
class AuditLogRepository(BaseRepository[AuditLog]):
|
|
def __init__(self) -> None:
|
|
super().__init__(AuditLog)
|