MCPcopy Create free account
hub / github.com/pgadmin-org/pgadmin4 / register

Method register

web/pgadmin/misc/cloud/__init__.py:58–72  ·  view source on GitHub ↗

Override the default register function to automagically register sub-modules at once.

(self, app, options)

Source from the content-addressed store, hash-verified

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

Callers 1

register_preferencesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected