forked from mirrors/bookwyrm
6 lines
254 B
Python
6 lines
254 B
Python
""" bring connectors into the namespace """
|
|
from .settings import CONNECTORS
|
|
from .abstract_connector import ConnectorException
|
|
from .abstract_connector import get_data, get_image
|
|
|
|
from .connector_manager import search, local_search, first_search_result
|