Refactoring & comments

This commit is contained in:
2025-06-08 19:24:01 +02:00
parent 845528e362
commit 28aa3261fb
8 changed files with 49 additions and 38 deletions

View File

@@ -8,8 +8,8 @@ import 'package:flutter/cupertino.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await ConfigService.initConfig();
globals.pointLimit = await ConfigService.getPointLimit();
globals.caboPenalty = await ConfigService.getCaboPenalty();
Globals.pointLimit = await ConfigService.getPointLimit();
Globals.caboPenalty = await ConfigService.getCaboPenalty();
runApp(const App());
}