mirror of
https://github.com/dbgate/dbgate
synced 2024-11-08 12:47:25 +00:00
17 lines
368 B
TypeScript
17 lines
368 B
TypeScript
import App from './App.svelte';
|
|
import './utility/connectionsPinger';
|
|
import './utility/changeCurrentDbByTab';
|
|
import './commands/stdCommands';
|
|
import localStorageGarbageCollector from './utility/localStorageGarbageCollector';
|
|
|
|
localStorageGarbageCollector();
|
|
|
|
const app = new App({
|
|
target: document.body,
|
|
props: {},
|
|
});
|
|
|
|
// const app = null;
|
|
|
|
export default app;
|