mirror of
https://github.com/mclueppers/xo-server.git
synced 2025-07-15 01:54:44 +02:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
var common = require('../../common');
|
|
var connection = common.createConnection();
|
|
var assert = require('assert');
|
|
|
|
connection.connect(function(err) {
|
|
if (err) throw err;
|
|
|
|
connection.destroy();
|
|
});
|