Spaces:
Runtime error
Runtime error
File size: 382 Bytes
fb38ec5 | 1 2 3 4 5 6 7 8 9 10 11 | import { FastifyPluginAsync } from "fastify";
import fp from "fastify-plugin";
import { SeleniumService } from "../services/selenium.service.js";
const seleniumPlugin: FastifyPluginAsync = async (fastify, options) => {
const seleniumService = new SeleniumService(fastify.log);
fastify.decorate("seleniumService", seleniumService);
};
export default fp(seleniumPlugin, "5.x");
|