# retoor <retoor@molodetz.nl>
|
|
|
|
from . import (
|
|
conventions,
|
|
auth,
|
|
lookups,
|
|
social_actions,
|
|
content,
|
|
profiles,
|
|
messaging,
|
|
notifications,
|
|
uploads,
|
|
project_files,
|
|
containers,
|
|
tools,
|
|
push,
|
|
issues,
|
|
gateway,
|
|
services,
|
|
admin,
|
|
game,
|
|
)
|
|
|
|
ORDERED_GROUPS = [
|
|
conventions.GROUP,
|
|
auth.GROUP,
|
|
lookups.GROUP,
|
|
social_actions.GROUP,
|
|
content.GROUP,
|
|
profiles.GROUP,
|
|
messaging.GROUP,
|
|
notifications.GROUP,
|
|
uploads.GROUP,
|
|
project_files.GROUP,
|
|
containers.GROUP,
|
|
tools.GROUP,
|
|
push.GROUP,
|
|
issues.GROUP,
|
|
gateway.GROUP,
|
|
services.GROUP,
|
|
admin.GROUP,
|
|
game.GROUP,
|
|
]
|