[WIP] A simple wake-on-lan service
at main 8 lines 154 B view raw
1import { mount } from 'svelte' 2import App from './App.svelte' 3 4const app = mount(App, { 5 target: document.getElementById('app')!, 6}) 7 8export default app