This repository has been archived on 2019-08-15. You can view files and clone it, but cannot push or open issues or pull requests.
TheThingsNetworkGateway/GatewayServer.mjs

18 lines
241 B
JavaScript

"use strict";
import Constants from './constants.mjs';
import Spi from 'spi';
import Gpio from 'gpio';
class GatewayServer {
constructor(in_settings) {
this.settings = in_settings;
}
start() {
}
}
export default GatewayServer;