Skip to content

Commit

Permalink
Add __all__ to __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lossyrob committed Jan 2, 2025
1 parent 3197d30 commit 09477f1
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
# Copyright (c) Microsoft. All rights reserved.

from semantic_kernel.connectors.memory.azure_db_for_postgres.azure_db_for_postgres_collection import (
AzureDBForPostgresCollection,
)
from semantic_kernel.connectors.memory.azure_db_for_postgres.azure_db_for_postgres_settings import (
AzureDBForPostgresSettings,
)
from semantic_kernel.connectors.memory.azure_db_for_postgres.azure_db_for_postgres_store import AzureDBForPostgresStore

__all__ = ["AzureDBForPostgresCollection", "AzureDBForPostgresSettings", "AzureDBForPostgresStore"]

0 comments on commit 09477f1

Please sign in to comment.