| 787 | } // black_magic |
| 788 | |
| 789 | struct NullMiddleware |
| 790 | { |
| 791 | struct context |
| 792 | {}; |
| 793 | |
| 794 | template<typename AllContext> |
| 795 | void before_handle(request&, response&, context&, AllContext&) |
| 796 | {} |
| 797 | |
| 798 | template<typename AllContext> |
| 799 | void after_handle(request&, response&, context&, AllContext&) |
| 800 | {} |
| 801 | }; |
| 802 | |
| 803 | struct NullSimpleMiddleware |
| 804 | { |
nothing calls this directly
no outgoing calls
no test coverage detected