BitTitan.Runbooks.Csv.psm1

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


# Install/import external modules
Install-Module ImportExcel -RequiredVersion 5.3.4 -Scope CurrentUser -AllowClobber -Force
Import-Module ImportExcel -RequiredVersion 5.3.4 -Force -Global

# Install/import BitTitan.Runbooks.Modules to bootstrap the install/import of the other modules
Install-Module BitTitan.Runbooks.Modules -Scope CurrentUser -AllowClobber
Import-Module BitTitan.Runbooks.Modules -Force

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