UNPKG

pimatic

Version:

A home automation server and framework for the Raspberry PI running on node.js

17 lines (11 loc) 394 B
// Oracle Client // ------- import inherits from 'inherits'; import Client_Oracle from '../oracle'; function Client_StrongOracle() { Client_Oracle.apply(this, arguments); } inherits(Client_StrongOracle, Client_Oracle); Client_StrongOracle.prototype._driver = () => require('strong-oracle')() Client_StrongOracle.prototype.driverName = 'strong-oracle' export default Client_StrongOracle;