hybridgroup/cylon-pebble

View on GitHub
index.js

Summary

Maintainability
A
0 mins
Test Coverage
"use strict";

var Adaptor = require("./lib/adaptor"),
    Driver = require("./lib/driver");

module.exports = {
  adaptors: ["pebble"],
  drivers: ["pebble"],

  adaptor: function(opts) {
    return new Adaptor(opts);
  },

  driver: function(opts) {
    return new Driver(opts);
  }
};