Coverage for dormatory/models/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.10.1, created at 2025-08-04 00:22 +0000
« prev ^ index » next coverage.py v7.10.1, created at 2025-08-04 00:22 +0000
1"""
2DORMATORY Models Package
4This package contains SQLAlchemy models for storing structured hierarchical data
5using a flat set of tables.
6"""
8from .dormatory_model import (
9 Object,
10 Type,
11 Link,
12 Permissions,
13 Versioning,
14 Attributes,
15)
17__all__ = [
18 "Object",
19 "Type",
20 "Link",
21 "Permissions",
22 "Versioning",
23 "Attributes",
24]