| 930 | */ |
| 931 | public handler(handlerFn: SequenceFunction) { |
| 932 | class SequenceFromFunction extends DefaultSequence { |
| 933 | async handle(context: RequestContext): Promise<void> { |
| 934 | return handlerFn(context, this); |
| 935 | } |
| 936 | } |
| 937 | |
| 938 | this.sequence(SequenceFromFunction); |
| 939 | } |
nothing calls this directly
no outgoing calls
no test coverage detected