icinga-powershell-framework/core/include/App.ps1
2018-11-06 17:14:49 +01:00

15 lines
No EOL
338 B
PowerShell

# App configuration
$App = @{
LogSeverity = [PSCustomObject]@{
PSTypeName = "LogSeverity"
Info = 0
Warning = 1
Error = 2
Exception = 3
Debug = 4
};
RootPath = $_InternalTempVariables.RootPath;
ModuleName = $_InternalTempVariables.ModuleName;
}
return $App;