(f: T_route)
| 358 | """ |
| 359 | |
| 360 | def decorator(f: T_route) -> T_route: |
| 361 | endpoint = options.pop("endpoint", None) |
| 362 | self.add_url_rule(rule, endpoint, f, **options) |
| 363 | return f |
| 364 | |
| 365 | return decorator |
| 366 |
nothing calls this directly
no test coverage detected