ffmpeg-service/index.mjs

6 lines
152 B
JavaScript

export function start(http, port, ctx) {
return import('./server/server.mjs')
.then(function(server) {
return server.run(http, port, ctx)
})
}