UNPKG
node-lol-client
Version:
latest (0.1.0)
0.1.0
League of Legends API Client for Node
cachafla/node-lol
node-lol-client
/
lib
/
index.js
17 lines
(12 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* * Copyright (c) 2013, Andres Rodriguez. All rights reserved. */
var
Client
=
require
(
'./client'
);
var
theClient;
exports
.
createClient
=
function
(
options
) { theClient =
new
Client
(options);
return
theClient; };
exports
.
close
=
function
(
) { theClient.
close
(); };