improvements on osc input

This commit is contained in:
2023-12-04 18:23:38 +01:00
parent cc963ac54f
commit e68ac4fcac
8 changed files with 164 additions and 116 deletions

14
ToposServer/banner.js Normal file
View File

@ -0,0 +1,14 @@
var pjson = require('./package.json');
let banner = `
┏┳┓ ┏┓┏┓┏┓
┃ ┏┓┏┓┏┓┏ ┃┃┗┓┃
┻ ┗┛┣┛┗┛┛ ┗┛┗┛┗┛
${pjson.version}\n`
function greet() {
console.log(banner)
}
module.exports = {
greet: greet
}