mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-03 12:10:55 -06:00
27 lines
806 B
JavaScript
27 lines
806 B
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2024, 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 SQLEditor from './SQLEditorModule';
|
|
|
|
/* eslint-disable */
|
|
/* This is used to change publicPath of webpack at runtime for loading chunks */
|
|
/* Do not add let, var, const to this variable */
|
|
__webpack_public_path__ = window.resourceBasePath;
|
|
/* eslint-enable */
|
|
|
|
if(!pgAdmin.Tools) {
|
|
pgAdmin.Tools = {};
|
|
}
|
|
pgAdmin.Tools.SQLEditor = SQLEditor.getInstance(pgAdmin, pgBrowser);
|
|
|
|
module.exports = {
|
|
SQLEditor: SQLEditor,
|
|
};
|