Public/Move-ModulePath.ps1
function Move-ModulePath { # .SYNOPSIS # Helps organize the folder structure of installed moduls. [CmdletBinding()] [Alias('Organize-ModulePath')] param ( ) process { throw [System.NotImplementedException]::new("Not Implemented yet, open an issue @ https://github.com/chadnpc/PsCraft/issues") } } |