* 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
16 lines
289 B
Python
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
|