1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/modules/victorops/oncallteam.go
2019-02-18 11:16:34 -05:00

17 lines
264 B
Go

package victorops
// OnCallTeam object to make
// managing objects easier
type OnCallTeam struct {
Name string
Slug string
OnCall []OnCall
}
// OnCall object to handle
// different on call policies
type OnCall struct {
Policy string
Userlist string
}