Files
bluebubbles-app/lib/database/html/launch_at_startup.dart
zlshames ec81edfd45 renamed models folder to database
- fix: startup issue
2024-08-15 09:49:31 -04:00

7 lines
284 B
Dart

class LaunchAtStartup {
static Future<void> enable() async => throw Exception('Not supported on Web!');
static Future<void> disable() async => throw Exception('Not supported on Web!');
static setup(String appName, bool minimized) => throw Exception('Not supported on Web!');
}