Files
breccia-mapper/people/views/__init__.py
2020-12-02 14:25:49 +00:00

17 lines
203 B
Python

"""
Views for displaying or manipulating models within the `people` app.
"""
from . import (
network,
person,
relationship
)
__all__ = [
'network',
'person',
'relationship',
]