MibooGram/core/search/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
206 B
Python
Raw Normal View History

2022-12-04 11:56:39 +00:00
from core.service import init_service
from .services import SearchServices as _SearchServices
__all__ = []
@init_service
def create_search_service():
_service = _SearchServices()
return _service