BitTitan.Runbooks.Csv.psm1

<#
.SYNOPSIS
    PowerShell module for CSV-related functions and resources used in BitTitan Runbooks
.NOTES
    Version: 0.1.14
    Last updated: 8 April 2019
 
    Copyright (c) BitTitan, Inc. All rights reserved.
    Licensed under the MIT License.
#>


# Install/import BitTitan.Runbooks.Modules to bootstrap the install/import of the other modules
if ("BitTitan.Runbooks.Modules" -notIn (Get-Module).Name) {
    Install-Module BitTitan.Runbooks.Modules -Scope CurrentUser -AllowClobber -Force
    Import-Module -Name "$($env:USERPROFILE)\Documents\WindowsPowerShell\Modules\BitTitan.Runbooks.Modules" -Force
}

# Install/import external modules
Import-ExternalModule ImportExcel -RequiredVersion 5.4.2

# Install/import the other BitTitan.Runbooks modules
Import-BT_Module BitTitan.Runbooks.Common -Quiet