Override the default register function to automagically register sub-modules at once.
(self, app, options)
| 124 | ] |
| 125 | |
| 126 | def register(self, app, options): |
| 127 | """ |
| 128 | Override the default register function to automagically register |
| 129 | sub-modules at once. |
| 130 | """ |
| 131 | from .server_groups import blueprint as module |
| 132 | self.submodules.append(module) |
| 133 | super().register(app, options) |
| 134 | |
| 135 | |
| 136 | blueprint = BrowserModule(MODULE_NAME, __name__) |
no test coverage detected