* INFRA-2887 : SLA breach heads up cron refactor/reimplementation * INFRA-2887 : Code review comments
12 lines
278 B
Go
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"},
|
|
}
|
|
}
|