From 20e10779a76b04e3f91b63eb07bf6e89c11bd420 Mon Sep 17 00:00:00 2001 From: Josh Harvey Date: Fri, 21 Oct 2016 18:18:15 +0300 Subject: [PATCH] move pair stuff to lamassu-admin-server --- lib/pair.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pair.js b/lib/pair.js index 4276fe8b..027f80fe 100644 --- a/lib/pair.js +++ b/lib/pair.js @@ -1,4 +1,3 @@ -const path = require('path') const db = require('./db') function pair (token, deviceId) { @@ -22,4 +21,4 @@ function isPaired (deviceId) { .then(() => true) } -module.exports = {totem, pair, unpair, isPaired} +module.exports = {pair, isPaired}