mirror of
https://github.com/dbgate/dbgate
synced 2024-11-15 08:16:28 +00:00
15 lines
346 B
TypeScript
15 lines
346 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: {},
|
|
});
|
|
|
|
export default app;
|