feat(classes): implement initiation, start work on dbHelper

This commit is contained in:
fbachus
2026-06-16 00:48:53 +02:00
parent 7cfc415f9f
commit 7f6c7beb59
2 changed files with 178 additions and 53 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ import 'transport_helper.dart';
void main() async {
await dotenv.load();
const String dbName = "oeffimasterTransportDb";
initDB(dbName);
DbHelper.initDb(dbName);
runApp(const MyApp());
}
@@ -145,4 +145,4 @@ class _MyHomePageState extends State<MyHomePage> {
),
);
}
}
}