| 9 | } |
| 10 | |
| 11 | type SimpleTriggerContext struct { |
| 12 | lastCompletionTime time.Time |
| 13 | lastExecutionTime time.Time |
| 14 | lastTriggeredExecutionTime time.Time |
| 15 | } |
| 16 | |
| 17 | func NewSimpleTriggerContext() *SimpleTriggerContext { |
| 18 | return &SimpleTriggerContext{} |
nothing calls this directly
no outgoing calls
no test coverage detected