pgadmin4/web/pgadmin/tools/debugger/static/js/index.js

23 lines
579 B
JavaScript

/////////////////////////////////////////////////////////////
//
// pgAdmin 4 - PostgreSQL Tools
//
// Copyright (C) 2013 - 2025, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////
import pgAdmin from 'sources/pgadmin';
import pgBrowser from 'top/browser/static/js/browser';
import Debugger from './DebuggerModule';
if (!pgAdmin.Tools) {
pgAdmin.Tools = {};
}
pgAdmin.Tools.Debugger = Debugger.getInstance(pgAdmin, pgBrowser);
module.exports = {
Debugger: Debugger,
};