mirror of
https://github.com/misskey-dev/media-proxy.git
synced 2025-04-29 02:47:26 +09:00
7 lines
176 B
JavaScript
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);
|
|
}
|