1 # Copyright (c) 2020 Ansible Project
2 # # Simplified BSD License (see licenses/simplified_bsd.txt or https://opensource.org/licenses/BSD-2-Clause)
3 
Get-PSUtilSpecnull4 Function Get-PSUtilSpec {
5     <#
6     .SYNOPSIS
7     Shared util spec test
8     #>
9     @{
10         options = @{
11           option1 = @{ type = 'str'; required = $true; aliases = 'alias1' }
12         }
13     }
14 }
15 
16 Export-ModuleMember -Function Get-PSUtilSpec
17