mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
11 lines
308 B
Python
11 lines
308 B
Python
from felicity.apps.abstract.entity import BaseEntity
|
|
from felicity.apps.abstract.mptt import BaseMPTT
|
|
from felicity.apps.abstract.repository import BaseRepository
|
|
from felicity.apps.abstract.service import BaseService
|
|
|
|
__all__ = [
|
|
"BaseEntity",
|
|
"BaseMPTT",
|
|
"BaseRepository",
|
|
"BaseService",
|
|
]
|