remove unused code

This commit is contained in:
Earther 2021-08-26 11:06:39 +07:00
parent c5828c0d69
commit d21680a5f9

View File

@ -16,7 +16,6 @@ const getTime = () => {
}
const out = (text, color = "white", stream = null) => {
let formattedText;
switch (color) {
case "white":
text = `${getTime()} ${chalk.white(text)}`;
@ -80,7 +79,7 @@ const startServer = (options) => {
}
});
conn.on("close", (event) => {
conn.on("close", () => {
out("[TERMLOG]: Closed", conn);
});