Skip to content

Commit

Permalink
clients: js: fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
turtleDev committed Oct 7, 2024
1 parent 1e9a227 commit d48f0de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/js/lib/client.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import axios from 'axios';
import { v4 as uuidv4 } from 'uuid';
import EventEmitter from 'events';
import WebSocket from 'ws';

import createJsonSerializer from './serializer/json_serializer.js';
import createProtobufSerializer from './serializer/proto_serializer.js';
Expand All @@ -9,8 +11,6 @@ import WireType from './types/wire_type.js';
import createProtoMarshaller from './wire/proto_wire.js';
import createJsonMarshaller from './wire/json_wire.js';
import { raystack, google } from '../protos/proton_compiled.js';
import EventEmitter from 'events';
import WebSocket from 'ws';

const NANOSECONDS_PER_MILLISECOND = 1e6;

Expand Down

0 comments on commit d48f0de

Please sign in to comment.