2019-05-20 11:18:25 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
class TTNAppServer {
|
2019-05-23 21:39:10 +00:00
|
|
|
// Destructure the awilix container
|
2019-05-29 10:59:40 +00:00
|
|
|
constructor({ settings, ansi }) {
|
2019-05-23 21:39:10 +00:00
|
|
|
this.settings = settings;
|
2019-05-29 10:59:40 +00:00
|
|
|
/** @type {Ansi} */
|
|
|
|
this.a = ansi;
|
2019-05-20 11:18:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
run() {
|
2019-06-03 13:14:23 +00:00
|
|
|
|
2019-05-20 11:18:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TTNAppServer;
|