mobdr/lib/db/db_log.dart

9 lines
198 B
Dart

import "package:mobdr/main.dart";
class dbLog {
static void addLog(
String type, String module, String libelle, int duree) async {
objectbox.addLog(type, module, libelle, duree);
}
}