SecretManagement.DevolutionsHub.Extension/SecretManagement.DevolutionsHub.Extension.psm1

using namespace Microsoft.PowerShell.SecretManagement

Get-ChildItem "$PSScriptRoot/Private" | Foreach-Object {
    . $PSItem.FullName
}

$publicFunctions = Get-ChildItem "$PSScriptRoot/Public" | Foreach-Object {
    . $PSItem.FullName
    $PSItem.BaseName
}

Export-ModuleMember $publicFunctions