Remove assets/

This commit is contained in:
Simon Ser 2020-06-24 11:18:51 +02:00
parent f9972dae5f
commit 62300746d3
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
5 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>IRC client</title>
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="sidebar">
@ -71,7 +71,7 @@
</section>
<script type="module">
import "./assets/index.js";
import "./index.js";
</script>
</body>
</html>

View file

@ -1,5 +1,5 @@
import * as irc from "./irc.js";
import Client from "./client.js";
import * as irc from "./lib/irc.js";
import Client from "./lib/client.js";
var server = {
name: "server",