vercel_dart_runtime 1.0.1
vercel_dart_runtime: ^1.0.1 copied to clipboard
A utility library for writing serverless functions in the Vercel Dart Runtime.
import 'package:shelf/shelf.dart';
import 'package:vercel_dart_runtime/vercel_dart_runtime.dart' show handle;
void main() => handle((Request req) async {
return Response.ok(req.url);
});