Current section
Files
Jump to
Current section
Files
lib/ex_azure_key_vault/api_version.ex
defmodule ExAzureKeyVault.APIVersion do
@moduledoc """
Internal module for returning the Azure Key Vault API Version.
"""
@doc """
Returns the Azure Key Vault API Version.
## Examples
iex(1)> ExAzureKeyVault.APIVersion.version()
"2016-10-01"
"""
@spec version :: String.t
def version do
"2016-10-01"
end
end