Providers/ServiceNow.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$Global:ProviderSetup = @{ ProviderName = 'ServiceNow' StartupMessage = 'Importing ServiceNow Module and Configuration' ModulesToImport = @('TMConsole.Provider.ServiceNow') StartupScript = [scriptblock] { # Define Provider Specific Configuration } } |