AppFlowy/frontend/appflowy_flutter/lib/startup/launch_configuration.dart
Nathan.fooo c0aef8f4fe
fix: login issue (#4546)
* fix: reset server url when using appflowy cloud the first time

* refactor: set authenticator in frontend

* chore: log version

* chore: show hint when changing the server type

* chore: bump version

* chore: fix test

* chore: bump collab
2024-01-30 09:33:34 +08:00

14 lines
289 B
Dart

class LaunchConfiguration {
const LaunchConfiguration({
this.isAnon = false,
required this.version,
required this.rustEnvs,
});
// APP will automatically register after launching.
final bool isAnon;
final String version;
//
final Map<String, String> rustEnvs;
}