forked from openedx/openedx-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.py
More file actions
20 lines (18 loc) · 759 Bytes
/
api.py
File metadata and controls
20 lines (18 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
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
from .applets.backup_restore.api import *
from .applets.collections.api import *
from .applets.components.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 *