🔧 fix(utils.py): import and add store_factory to the list of factories and dependencies
This commit is contained in:
parent
596fc8ed41
commit
0fadad6f7d
1 changed files with 2 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ def get_factories_and_deps():
|
|||
from langflow.services.auth import factory as auth_factory
|
||||
from langflow.services.task import factory as task_factory
|
||||
from langflow.services.session import factory as session_service_factory # type: ignore
|
||||
from langflow.services.store import factory as store_factory
|
||||
|
||||
return [
|
||||
(settings_factory.SettingsServiceFactory(), []),
|
||||
|
|
@ -40,6 +41,7 @@ def get_factories_and_deps():
|
|||
session_service_factory.SessionServiceFactory(),
|
||||
[ServiceType.CACHE_SERVICE],
|
||||
),
|
||||
(store_factory.StoreServiceFactory(), [ServiceType.SETTINGS_SERVICE]),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue