mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-10 08:04:36 -06:00
18 lines
479 B
JavaScript
18 lines
479 B
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
define('bundled_browser',[
|
|
'pgadmin.browser',
|
|
'sources/browser/index',
|
|
'top/tools/erd/static/js/index',
|
|
'top/tools/psql/static/js/index',
|
|
], function(pgBrowser) {
|
|
pgBrowser.init();
|
|
});
|