WIP auth, added Drift for database and refined shared_models for data exchange

This commit is contained in:
Nate Anderson
2025-01-30 22:17:32 -07:00
parent d39e119bf4
commit 37e168e46b
15 changed files with 642 additions and 2 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!');
}