Skip to content

Commit

Permalink
Init placeholder for Invoke-TheCleaners
Browse files Browse the repository at this point in the history
  • Loading branch information
SamErde committed Feb 19, 2024
1 parent b84d1d4 commit 214cb0d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/TheCleaners/Public/Invoke-TheCleaners.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
function Invoke-TheCleaners {
[CmdletBinding()]
param (
# Nothing here yet
)

begin {
$Logo = @'
╭━━━━┳╮╱╱╱╱╱╭━━━┳╮
┃╭╮╭╮┃┃╱╱╱╱╱┃╭━╮┃┃
╰╯┃┃╰┫╰━┳━━╮┃┃╱╰┫┃╭━━┳━━┳━╮ ╭━━┳━┳━━╮
╱╱┃┃╱┃╭╮┃┃━┫┃┃╱╭┫┃|┃━┫╭╮┃╭╮╮┃|━┫╭┫━━┫
╱╱┃┃╱┃┃┃┃┃━┫┃╰━╯┃╰┫┃━┫╭╮┃||┃┃|━┫|┣━━┃
╱╱╰╯╱╰╯╰┻━━╯╰━━━┻━┻━━┻╯╰┻╯╰┻┻━━┻╯╰━━╯
'@
}

process {
Write-Output $Logo
Write-Output "The Cleaners are here to help you clean up that crime scene in your log folders."
Write-Output "This function hasn't been implemented yet."
Get-Command -Module TheCleaners
}

end {

}
}

0 comments on commit 214cb0d

Please sign in to comment.