fixing output

This commit is contained in:
raven 2023-01-08 23:41:53 -05:00
parent 60bb59831e
commit e2ee6d6c11
1 changed files with 4 additions and 4 deletions

View File

@ -160,7 +160,7 @@ rl.on('line', input => {
startContainer(DAPI_KEY.key).then((data) => {
console.log(data)
for (const conn of conns) {
conn.write(`${USERNAME} ran start: \n` + data)
conn.write(`${USERNAME} ran start.`)
}
})
}
@ -171,7 +171,7 @@ rl.on('line', input => {
startContainer(DAPI_KEY.key).then((data) => {
console.log(data)
for (const conn of conns) {
conn.write(`${USERNAME} ran stop: \n` + data)
conn.write(`${USERNAME} ran stop.`)
}
})
}
@ -182,7 +182,7 @@ rl.on('line', input => {
startContainer(DAPI_KEY.key).then((data) => {
console.log(data)
for (const conn of conns) {
conn.write(`${USERNAME} ran restart: \n` + data)
conn.write(`${USERNAME} ran restart.`)
}
})
}
@ -194,7 +194,7 @@ rl.on('line', input => {
getStats(DAPI_KEY.key).then((data) => {
console.log(data)
for (const conn of conns) {
conn.write(`${USERNAME} ran stats: \n` + data)
conn.write(`${USERNAME} ran stats.`)
}
})
}