You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
328 B
15 lines
328 B
import 'package:dafl_project_flutter/main.dart';
|
|
import 'package:dafl_project_flutter/persistence/database_connexion.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
|
Future<void> main() async {
|
|
MyApp mainApp = MyApp();
|
|
|
|
runApp(mainApp);
|
|
|
|
DatabaseConnexion d = DatabaseConnexion();
|
|
|
|
DatabaseConnexion.initConnexion();
|
|
|
|
} |