mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
7 lines
254 B
Python
7 lines
254 B
Python
from felicity.apps.abstract.repository import BaseRepository
|
|
from felicity.apps.impress.entities import ReportImpress
|
|
|
|
|
|
class ReportImpressRepository(BaseRepository[ReportImpress]):
|
|
def __init__(self) -> None:
|
|
super().__init__(ReportImpress)
|