10 строки
330 B
Python
10 строки
330 B
Python
# ------------------------------------
|
|
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
# ------------------------------------
|
|
from key_vault_base import KeyVaultBase
|
|
from azure.identity.aio import DefaultAzureCredential
|
|
|
|
|
|
class KeyVaultBaseAsync(KeyVaultBase):
|
|
credential_type = DefaultAzureCredential |