mirror of
https://github.com/HeyPuter/puter
synced 2024-11-15 06:15:47 +00:00
0d2ffdb380
It does nothing but output a message to the console.
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> |