Override the default register function to automagically register sub-modules at once.
(self, app, options)
| 56 | 'cloud.clear_cloud_session'] |
| 57 | |
| 58 | def register(self, app, options): |
| 59 | """ |
| 60 | Override the default register function to automagically register |
| 61 | sub-modules at once. |
| 62 | """ |
| 63 | super().register(app, options) |
| 64 | |
| 65 | from .azure import blueprint as module |
| 66 | app.register_blueprint(module) |
| 67 | |
| 68 | from .rds import blueprint as module |
| 69 | app.register_blueprint(module) |
| 70 | |
| 71 | from .google import blueprint as module |
| 72 | app.register_blueprint(module) |
| 73 | |
| 74 | |
| 75 | # Create blueprint for CloudModule class |
no outgoing calls
no test coverage detected