mirror of
https://github.com/BlueBubblesApp/bluebubbles-app.git
synced 2025-08-06 19:44:08 +08:00
7 lines
284 B
Dart
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!');
|
|
} |