mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
336 B
PowerShell
21 lines
336 B
PowerShell
6 years ago
|
#Requires -Module Ansible.ModuleUtils.Recursive2
|
||
|
#Requires -Version 3.0
|
||
|
|
||
|
Function Get-Test3 {
|
||
|
<#
|
||
|
.SYNOPSIS
|
||
|
Test function
|
||
|
#>
|
||
|
return "Get-Test3: 2: $(Get-Test2)"
|
||
|
}
|
||
|
|
||
|
Function Get-NewTest3 {
|
||
|
<#
|
||
|
.SYNOPSIS
|
||
|
Test function
|
||
|
#>
|
||
|
return "Get-NewTest3"
|
||
|
}
|
||
|
|
||
|
Export-ModuleMember -Function Get-Test3, Get-NewTest3
|