Notes2/views/pages/sync.gotmpl

15 lines
321 B
Go Template

{{ define "page" }}
<div style="margin: 32px">
<h1>Sync</h1>
<script type="module">
import { NodeStore } from 'node_store'
import { Sync } from 'sync'
globalThis.Sync = Sync
globalThis.nodeStore = new NodeStore()
globalThis.nodeStore.initializeDB().then(()=>{
Sync.tree()
})
</script>
</div>
{{ end }}