LoRaWAN-Signal-Mapping/server/ttn-app-server/TTNAppServer.mjs

17 lines
227 B
JavaScript

"use strict";
class TTNAppServer {
// Destructure the awilix container
constructor({ settings, ansi }) {
this.settings = settings;
/** @type {Ansi} */
this.a = ansi;
}
run() {
}
}
export default TTNAppServer;