mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
var Connection = require(__dirname + "/../../lib/binding");
|
|
var con = new Connection();
|
|
console.log(con.test());
|
|
|
|
setTimeout(function() {
|
|
|
|
}, 1000)
|