Files
ps.ipam/ps.ipam.psm1
2022-12-05 16:51:33 +03:00

9 lines
308 B
PowerShell

using namespace ps.ipam
Get-ChildItem "$(Split-Path $script:MyInvocation.MyCommand.Path)\functions" -Filter "*.ps1" -Recurse | ForEach-Object {
. $_.FullName
}
Get-ChildItem "$(Split-Path $script:MyInvocation.MyCommand.Path)\classes" -Filter "*.ps1" -Recurse | ForEach-Object {
. $_.FullName
}