Fmg-KeePass.psm1


if(!$PSScriptRoot) {
    $PSScriptRoot = $MyInovocation.PSScriptRoot
}

if(!$PSScriptRoot) {
    $PSScriptRoot = Split-Path $MyInovocation.MyCommand.Path
}

Get-Item "$PSScriptRoot\*.ps1" | ForEach-Object {
     . "$($_.FullName)"
}

$functions  = @(
    'New-KeePassKey',
    'Open-KeePassPackage',
    'Find-KeePassEntryByTitle',
    'Find-KeePassEntry',
    'Export-KeePassBinary'
)
foreach($func in $functions) {
    Export-ModuleMember -Function $func
}