Browse Source

import from src/RPCLibrary

master
Daniel Huebleitner 5 years ago
parent
commit
c552d7bb8d
1 changed files with 1 additions and 4 deletions
  1. 1
    4
      test/Test.ts

+ 1
- 4
test/Test.ts View File

1
 import { describe, it } from "mocha";
1
 import { describe, it } from "mocha";
2
 
2
 
3
-import { RPCServer } from '../src/Backend'
3
+import { RPCServer, RPCSocket, SubscriptionResponse, makeSubResponse } from '../src/RPCLibrary'
4
 import * as uuidv4 from "uuid/v4"
4
 import * as uuidv4 from "uuid/v4"
5
-import { RPCSocket } from "../src/Frontend";
6
-import { SubscriptionResponse } from "../src/Types";
7
-import { makeSubResponse } from "../src/Utils";
8
 
5
 
9
 const add = (...args:number[]) => {return args.reduce((a,b)=>a+b, 0)}
6
 const add = (...args:number[]) => {return args.reduce((a,b)=>a+b, 0)}
10
 function makeServer(){
7
 function makeServer(){

Loading…
Cancel
Save