Files
edx-platform/openedx/core/djangoapps/bookmarks/api.py
Braden MacDonald 626f11f608 test: Import linter: optionally enforce usage of a package's public API (#31903)
* test: warn about dependencies from cms->openedx->lms and vice versa

* test: warn about importing from package's internal implementation code

* chore: Update some imports to use public APIs only

* chore: Update 'bookmarks' app to have stricter public API

* fix: we are sharing 'adapters' from olx_rest_api to content_staging
2023-04-20 11:34:51 -07:00

16 lines
289 B
Python

"""
Bookmarks Python public API.
"""
# pylint: disable=unused-import
from .api_impl import (
BookmarksLimitReachedError,
get_bookmark,
get_bookmarks,
can_create_more,
create_bookmark,
delete_bookmark,
delete_bookmarks,
)
from .services import BookmarksService