16 lines
449 B
JavaScript
16 lines
449 B
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2025, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import pgAdmin from 'sources/pgadmin';
|
|
import 'pgadmin.tools.file_manager';
|
|
|
|
export function showFileManager(...args) {
|
|
pgAdmin.Tools.FileManager.show(...args);
|
|
}
|