mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-24 15:20:21 +08:00
18 lines
418 B
HTML
18 lines
418 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Git client</title>
|
||
|
<script src="__SDK_URL__"></script>
|
||
|
<script src="config.js"></script>
|
||
|
<script src="bundle.js"></script>
|
||
|
<script>
|
||
|
document.addEventListener('DOMContentLoaded', async () => {
|
||
|
main();
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
This is a cli app so you shouldn't see this
|
||
|
</body>
|
||
|
</html>
|