FurryChat/lib/utils/database/unsupported.dart

13 lines
290 B
Dart
Raw Normal View History

2020-05-13 13:58:59 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-07-20 15:33:52 +00:00
Future<Database> constructDb(
2020-05-22 10:21:16 +00:00
{bool logStatements = false,
String filename = 'database.sqlite',
2020-07-20 15:33:52 +00:00
String password = ''}) async {
2020-05-13 13:58:59 +00:00
throw 'Platform not supported';
}
Future<String> getLocalstorage(String key) async {
return null;
}