19 lines
253 B
Go
19 lines
253 B
Go
|
package web
|
||
|
|
||
|
var clientReloadContent = `
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title> Reloading </title>
|
||
|
</head>
|
||
|
<body>
|
||
|
reloading
|
||
|
</body>
|
||
|
<script>
|
||
|
setTimeout(() => {
|
||
|
document.location.reload();
|
||
|
}, 3000);
|
||
|
</script>
|
||
|
</html>
|
||
|
`
|