Mold.psm1
function Get-Mold { param ( $Path ) Write-Verbose 'This will retrive all Molds' } function Invoke-Mold { param ( $Path ) Write-Verbose 'This will invoke mold from existing templates' } function New-Mold { param ( $Path ) Write-Verbose 'This will create a new mold templates' } function Test-Mold { param ( $Path ) Write-Verbose 'This will test mold and existing templates' } function Update-Mold { param ( $Path ) Write-Verbose 'This will update existing mold templates' } |