File size: 364 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
package calsub
import (
"time"
"github.com/google/uuid"
"github.com/target/goalert/oncall"
)
type renderData struct {
ApplicationName string
ScheduleID uuid.UUID
ScheduleName string
Shifts []oncall.Shift
ReminderMinutes []int
Version string
GeneratedAt time.Time
FullSchedule bool
UserNames map[string]string
}
|