refactor: Split people.views into multiple modules

This commit is contained in:
James Graham
2020-03-27 15:15:18 +00:00
parent 7c75f9d7f4
commit 2cdc7675c7
5 changed files with 178 additions and 149 deletions
+9
View File
@@ -0,0 +1,9 @@
"""
Views for displaying or manipulating models within the `people` app.
"""
from . import (
network,
person,
relationship
)