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