WIP still, tuning up auth and room wildcard with middleware

This commit is contained in:
Nate Anderson
2025-02-02 19:49:11 -07:00
parent 37e168e46b
commit 544d3b45ba
18 changed files with 369 additions and 94 deletions
+5
View File
@@ -0,0 +1,5 @@
import 'package:dart_frog/dart_frog.dart';
Response onRequest(RequestContext context, String roomCode) {
return Response(body: 'Joined $roomCode!');
}