1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/victorops/oncallteam.go

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
}