Server
Fastify

Fastify

This adds direct upload routes.

yarn add @uplo/fastify
import fastify from 'fastify';
import uploFastify from '@uplo/fastify';
 
const app = fastify();
 
const uplo = {
  // Your uplo config
}
 
app.register(uploFastify, { uplo });