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

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

Export-ModuleMember -Function Invoke-FromPSRel2