UNPKG

node-lol-client

Version:

League of Legends API Client for Node

17 lines (12 loc) 277 B
/* * 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(); };