moved RPCLibrary to Index

This commit is contained in:
Daniel Huebleitner
2019-10-29 20:20:41 +01:00
parent c8b0e65034
commit 45d6bb9062
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { describe, it } from "mocha";
import { RPCServer, RPCSocket, SubscriptionResponse, makeSubResponse } from '../src/RPCLibrary'
import { RPCServer, RPCSocket, SubscriptionResponse, makeSubResponse } from '../Index'
import * as uuidv4 from "uuid/v4"
const add = (...args:number[]) => {return args.reduce((a,b)=>a+b, 0)}