()
| 1149 | |
| 1150 | func (e Event) ID() uuid.UUID { return e.id } |
| 1151 | func (e Event) Timestamp() time.Time { return e.ts } |
| 1152 | func (e Event) Name() string { return e.name } |
| 1153 | func (e Event) Origin() Module { return e.origin } // Returns the module that originated the event. May be nil, usually if caddy core emits the event. |
| 1154 |