Add drift support for web

This commit is contained in:
2025-02-09 10:53:18 -07:00
parent 22b13b9720
commit f73bd53214
11 changed files with 13783 additions and 31 deletions
+12
View File
@@ -0,0 +1,12 @@
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:shared_models/jwt.dart';
part 'auth.g.dart';
@riverpod
class JwtNotifier extends _$JwtNotifier {
@override
JWTBody? build() {
return null;
}
}