When i use the example code and run node server i get the error TypeError: fastify.register is not a function
const fastify = require('fastify');
fastify.register(require('fastify-postgres'), {
connectionString: 'postgres://[email protected]/testdb'
});
// ...