Skip to content

Commit

Permalink
fix: http and ws have no default exports
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Aug 26, 2020
1 parent f3e4edf commit 5c01ed9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server.ts
Expand Up @@ -4,8 +4,8 @@
*
*/

import http from 'http';
import WebSocket from 'ws';
import * as http from 'http';
import * as WebSocket from 'ws';
import {
GraphQLSchema,
ValidationRule,
Expand Down

0 comments on commit 5c01ed9

Please sign in to comment.