handle method
Implementation
Future<void> handle(
Request req,
ResponseContract res,
NextFunction next,
) async {
final origin = req.origin;
Env.set('APP_URL', origin);
await next();
}
Future<void> handle(
Request req,
ResponseContract res,
NextFunction next,
) async {
final origin = req.origin;
Env.set('APP_URL', origin);
await next();
}