media-proxy/server.js
2023-02-05 12:34:04 +00:00

7 lines
176 B
JavaScript

import config from './config.js';
import app from './built/index.js';
export default function (fastify, opts, next) {
return app(fastify, { ...config, ...opts }, next);
}