Files
houston-be/common/util/common_test_util.go
Vijay Joshi 0d613a4bfb INFRA-2887 : SLA breach heads up cron refactor/reimplementation (#411)
* INFRA-2887 : SLA breach heads up cron refactor/reimplementation

* INFRA-2887 : Code review comments
2024-04-01 19:18:38 +05:30

12 lines
278 B
Go

package util
import "houston/model/severity"
func GetMockSeverityEscalationMap() map[uint]*severity.SeverityDTO {
return map[uint]*severity.SeverityDTO{
2: {ID: 2, Priority: 2, Name: "P2"},
3: {ID: 3, Priority: 3, Name: "P3"},
4: {ID: 4, Priority: 4, Name: "P4"},
}
}