12 lines
384 B
Dart
12 lines
384 B
Dart
library app.globals;
|
|
|
|
// ignore: unused_import
|
|
import 'package:smoke_cess_app/mock/db_mock.dart';
|
|
import 'package:smoke_cess_app/services/database_service.dart';
|
|
|
|
//DatabaseService databaseService = DatabaseService.instance;
|
|
DatabaseService databaseService = DatabaseMock();
|
|
|
|
// set this to read settings from local json file instead of scanning a qr code
|
|
bool useLocalConfig = true;
|