icinga-powershell-framework/core/include/App.ps1

15 lines
338 B
PowerShell
Raw Normal View History

2018-11-06 11:14:49 -05:00
# 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;