test-module-sfdx.psm1

# This file imports the public and private functions and defines what is exported from the module.

# Import the public function
. $PSScriptRoot\src\Public\Get-TestModule.ps1
. $PSScriptRoot\src\Public\Delete-OwnDebugLogs.ps1
. $PSScriptRoot\src\Public\Delete-OrgTraceFlags.ps1

# Import the private helper function
. $PSScriptRoot\src\Private\HelperFunction.ps1

# Export the public function
Export-ModuleMember -Function Get-TestModule
Export-ModuleMember -Function Delete-OrgTraceFlags
Export-ModuleMember -Function Delete-OwnDebugLogs