I’m a little confused about when to use plugins in Fastify.js. For example, if I just have a lib/utils.js file with some utility functions, I would normally just require() them throughout my app wherever needed. Is there some great benefit to making my utils plugins instead? When would I do a plugin instead of a plain js require()?