2021-05-25 09:42:57 -05:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2023-01-02 00:23:55 -06:00
|
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2021-05-25 09:42:57 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
import gettext from 'sources/gettext';
|
|
|
|
import url_for from 'sources/url_for';
|
2022-09-08 04:46:48 -05:00
|
|
|
import _ from 'lodash';
|
2021-05-25 09:42:57 -05:00
|
|
|
import pgAdmin from 'sources/pgadmin';
|
|
|
|
import pgBrowser from 'top/browser/static/js/browser';
|
|
|
|
import * as csrfToken from 'sources/csrf';
|
|
|
|
import {initialize} from './psql_module';
|
|
|
|
|
2023-02-09 22:58:39 -06:00
|
|
|
let pgBrowserOut = initialize(gettext, url_for, _, pgAdmin, csrfToken, pgBrowser);
|
2021-05-25 09:42:57 -05:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
pgBrowser: pgBrowserOut,
|
|
|
|
};
|