mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 03:45:59 +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;
|