(self)
| 796 | self.routes.append(full_name) |
| 797 | |
| 798 | def _serve_default_favicon(self): |
| 799 | return self.backend.make_response( |
| 800 | pkgutil.get_data("dash", "favicon.ico"), content_type="image/x-icon" |
| 801 | ) |
| 802 | |
| 803 | def _setup_routes(self): |
| 804 | self.backend.setup_component_suites(self) |
nothing calls this directly
no test coverage detected