mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
23 lines
591 B
JavaScript
23 lines
591 B
JavaScript
|
/////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// pgAdmin 4 - PostgreSQL Tools
|
||
|
//
|
||
|
// Copyright (C) 2013 - 2022, 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 SchemaDiff from './SchemaDiffModule';
|
||
|
|
||
|
if (!pgAdmin.Tools) {
|
||
|
pgAdmin.Tools = {};
|
||
|
}
|
||
|
|
||
|
pgAdmin.Tools.SchemaDiff = SchemaDiff.getInstance(pgAdmin, pgBrowser);
|
||
|
|
||
|
module.exports = {
|
||
|
SchemaDiff: SchemaDiff,
|
||
|
};
|