"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;