mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-16 18:25:12 -06:00
24 lines
730 B
JavaScript
24 lines
730 B
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2021, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import gettext from 'sources/gettext';
|
|
import url_for from 'sources/url_for';
|
|
import $ from 'jquery';
|
|
import _ from 'underscore';
|
|
import pgAdmin from 'sources/pgadmin';
|
|
import pgBrowser from 'top/browser/static/js/browser';
|
|
import * as csrfToken from 'sources/csrf';
|
|
import {initialize} from './psql_module';
|
|
|
|
let pgBrowserOut = initialize(gettext, url_for, $, _, pgAdmin, csrfToken, pgBrowser);
|
|
|
|
module.exports = {
|
|
pgBrowser: pgBrowserOut,
|
|
};
|