sf-dev-tools.psm1

# This file imports the public and private functions and exports the public functions for use by the module's consumers.

# Import the public function
. $PSScriptRoot\src\Public\Get-SampleFunction.ps1

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

# Export the public functions
Export-ModuleMember -Function Get-SampleFunction