Browse Source

fixup: lint errors

pull/794/head
Philip H. 3 years ago
committed by GitHub
parent
commit
48f3851e6c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      src/lib/Server.js

3
src/lib/Server.js

@ -2,7 +2,7 @@
const path = require('path');
const bcrypt = require('bcryptjs');
const crypto = require('crypto');
const crypto = require('node:crypto');
const Koa = require('koa');
const Router = require('@koa/router');
@ -12,6 +12,7 @@ const serve = require('koa-static');
const debug = require('debug')('Server');
const Util = require('./Util');
const ServerError = require('./ServerError');
const WireGuard = require('../services/WireGuard');

Loading…
Cancel
Save