mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 17:02:55 +08:00
8 lines
270 B
Python
8 lines
270 B
Python
|
|
from felicity.database.repository import BaseRepository
|
|
from felicity.database.entity import BaseEntity
|
|
from .audit import AuditUser, AuditHistory
|
|
from .service import BaseService
|
|
|
|
|
|
__all__ = ["BaseEntity", "AuditUser", "AuditHistory", "BaseRepository", "BaseService"]
|