summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections_relative_imports/collection_root/ansible_collections/my_ns/my_col/plugins/module_utils/PSRel1.psm1
blob: bf812643a087420f3e441a13e9a3af500b27997d (plain)
1
2
3
4
5
6
7
8
9
10
11
#AnsibleRequires -PowerShell .sub_pkg.PSRel2

Function Invoke-FromPSRel1 {
    <#
    .SYNOPSIS
    Test function
    #>
    return "$(Invoke-FromPSRel2) -> Invoke-FromPSRel1"
}

Export-ModuleMember -Function Invoke-FromPSRel1