Skip to content

Commit

Permalink
Update server.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Feb 6, 2024
1 parent 7a9ad8d commit 2fb6879
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/homebridge-ui/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import { AuthorizeURL } from '../settings.js';
import { createServer } from 'http';
import fs from 'fs';
import url from 'url';
import { exec } from 'child_process';
import { exec as execCb } from 'child_process';
import util from 'util';
const exec = util.promisify(execCb);

class PluginUiServer extends HomebridgePluginUiServer {
public key!: string;
Expand Down

0 comments on commit 2fb6879

Please sign in to comment.