????
Current Path : C:/opt/pgsql/pgAdmin 4/web/pgadmin/misc/dependencies/ |
Current File : C:/opt/pgsql/pgAdmin 4/web/pgadmin/misc/dependencies/__init__.py |
########################################################################## # # pgAdmin 4 - PostgreSQL Tools # # Copyright (C) 2013 - 2024, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # ########################################################################## """A blueprint module providing utility functions for the application.""" from flask import url_for from pgadmin.utils import PgAdminModule MODULE_NAME = 'dependencies' class DependenciesModule(PgAdminModule): pass # Initialise the module blueprint = DependenciesModule(MODULE_NAME, __name__, url_prefix='/misc/dependencies')