mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-05-13 14:10:58 +02:00
17 lines
276 B
HTML
17 lines
276 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Stream Bypass</title>
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import Player from '~/entries/player/Player.svelte';
|
|
|
|
new Player({
|
|
target: document.body
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|