-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathapi.py
More file actions
24 lines (21 loc) · 893 Bytes
/
api.py
File metadata and controls
24 lines (21 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
This is the public API for content authoring in the Open edX Core.
This is the single ``api`` module that code outside of the
``openedx_content.*`` package should import from. It will
re-export the public functions from all api.py modules of its applets.
It may also implement its own convenience APIs that wrap calls to multiple app
APIs.
"""
# These wildcard imports are okay because these api modules declare __all__.
# pylint: disable=wildcard-import,unused-import
# Signals are kept in a separate namespace:
from . import api_signals as signals
from .applets.backup_restore.api import *
from .applets.collections.api import *
from .applets.components.api import *
from .applets.containers.api import *
from .applets.media.api import *
from .applets.publishing.api import *
from .applets.sections.api import *
from .applets.subsections.api import *
from .applets.units.api import *