WITtools.psm1

<#
    .NOTES
    --------------------------------------------------------------------------------
     Code generated by: SAPIEN Technologies, Inc., PowerShell Studio 2021 v5.8.191
     Generated on: 2021-08-31 16:03
     Generated by: BjörnWillim
    --------------------------------------------------------------------------------
    .DESCRIPTION
        Script generated by PowerShell Studio 2021
#>



    # Implement your your modulefunctions in this script.
    
    
    # Export only the functions using PowerShell standard verb-noun naming.
    # Be sure to list each exported functions in the FunctionsToExport field of the module manifest file.
    
    
    $functions = @( Get-ChildItem -Path $PSScriptRoot\Functions\*.ps1 -Recurse -ErrorAction SilentlyContinue )
    Foreach($import in @($functions)) {
        . $import.fullname
       
    }