Skip to content

Commit 09477f1

Browse files
committed
Add __all__ to __init__.py
1 parent 3197d30 commit 09477f1

File tree

1 file changed

+10
-0
lines changed
  • python/semantic_kernel/connectors/memory/azure_db_for_postgres

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
11
# Copyright (c) Microsoft. All rights reserved.
2+
3+
from semantic_kernel.connectors.memory.azure_db_for_postgres.azure_db_for_postgres_collection import (
4+
AzureDBForPostgresCollection,
5+
)
6+
from semantic_kernel.connectors.memory.azure_db_for_postgres.azure_db_for_postgres_settings import (
7+
AzureDBForPostgresSettings,
8+
)
9+
from semantic_kernel.connectors.memory.azure_db_for_postgres.azure_db_for_postgres_store import AzureDBForPostgresStore
10+
11+
__all__ = ["AzureDBForPostgresCollection", "AzureDBForPostgresSettings", "AzureDBForPostgresStore"]

0 commit comments

Comments
 (0)