Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

Commit

Permalink
needed for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
T0biii committed Jan 24, 2022
1 parent e2af98e commit 48127e6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions cv-bConnect/cv-bConnect.psm1
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#╔═════════════════════════╦══════════════════════════════════╗
#║ baramundi software AG ║ bConnect Module for Powershell ║
#╠═════════════════════════╩══════════════════════════════════╣
#║ Author : Alexander Haugk <alexander.haugk@baramundi.de> ║
#║ Target : bMS 2020 R1 ║
#╚════════════════════════════════════════════════════════════╝
# This script is provided "as is" just for educational purpose and without
# warranty of any kind.
#
# Please place your comments, questions, improvements, etc
# on Github: https://github.com/baramundisoftware/PS-bConnect


# Load all scripts of the module
foreach($modfile in (Get-ChildItem *.ps1 -Path "$PSScriptRoot\Private")){
. $modfile.FullName
}

foreach($modfile in (Get-ChildItem *.ps1 -Path "$PSScriptRoot\Public","$PSScriptRoot\Types")){
. $modfile.FullName
Export-ModuleMember $modfile.BaseName
}

0 comments on commit 48127e6

Please sign in to comment.