blob: 8b0030390d0d196aa4bfc4ce70d6b6ade1915a10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>
</body>
<script src="./dispatcher.js"></script>
<script>
const params = new URLSearchParams(window.location.search);
const uuid = params.get('uuid');
const executor = new Executor(uuid); // `execute()` is called in constructor.
</script>
</html>
|