aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.js
diff options
context:
space:
mode:
authorNick Coutsos <[email protected]>2021-09-09 20:12:52 -0400
committerNick Coutsos <[email protected]>2021-09-09 20:12:52 -0400
commite9d2c92b4148825575b10878274a28fba05947c4 (patch)
tree02980f9112d3e5a9e8b0d759e1796260291978b2 /index.js
parentb90f6bf3a4479c44bf86d01ab4eda9d8c805ba6d (diff)
downloadkeymap-editor-e9d2c92b4148825575b10878274a28fba05947c4.tar.gz
keymap-editor-e9d2c92b4148825575b10878274a28fba05947c4.zip
Drop QMK interface
Diffstat (limited to 'index.js')
-rw-r--r--index.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/index.js b/index.js
index 3ae6c52..ac26fbd 100644
--- a/index.js
+++ b/index.js
@@ -3,7 +3,6 @@ const process = require('process')
const express = require('express')
const expressWs = require('express-ws')
const bodyParser = require('body-parser')
-const qmk = require('./qmk')
const zmk = require('./zmk')
const app = express()
@@ -17,7 +16,7 @@ childProcess.execFile('npm', ['run', 'build-watch'], { cwd: './application' }, e
process.exit(1)
})
-const firmwares = { qmk, zmk }
+const firmwares = { zmk }
function addFirmwareLibrary(req, res, next) {