SecretManagement.Chromium.psm1

#This file normally is intentionally left blank for https://github.com/pester/Pester/issues/1456
$publicFunctions = Get-ChildItem "$PSScriptRoot/Public/*.ps1" | Foreach-Object {
    . $PSItem.FullName
    #Output the name of the function assuming it is the same as the .ps1 file so it can be exported
    $PSItem.BaseName
}
Export-ModuleMember -Function $publicFunctions