mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
21 lines
261 B
Python
21 lines
261 B
Python
"""
|
|
Views for displaying or manipulating models within the `people` app.
|
|
"""
|
|
|
|
from . import (
|
|
map,
|
|
network,
|
|
organisation,
|
|
person,
|
|
relationship
|
|
)
|
|
|
|
|
|
__all__ = [
|
|
'map',
|
|
'network',
|
|
'organisation',
|
|
'person',
|
|
'relationship',
|
|
]
|