package basetypes type Stack struct { calendars []Calendar } func (stack *Stack) Push(calendar *Calendar) (*Stack, error) { return nil, nil }