@adonisjs/websocket-client
Version:
Websocket client for AdonisJs
17 lines (13 loc) • 357 B
JavaScript
/**
* adonis-websocket-client
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import Connection from './src/Connection/index.js'
export default function (url, options) {
return new Connection(url, options)
}