<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8"/>
<title>Fetch Example</title>
<script type="module">
import init from './fetch.js';
async function run() {
await init();
}
run();
</script>
</head>
<body>
<p>Fetch Example, read console...</p>
</body>
</html>