AppFlowy/frontend/appflowy_flutter/lib/startup/launch_configuration.dart
Nathan.fooo 3e17613f54
tests: AppFlowy Cloud integration test (#4015)
* chore: save cloud ofnig

* chore: fix .a link warnings

* chore: add cloud test runner

* refactor: test folder

* ci: add test

* ci: add test

* ci: fix

* ci: fix
2023-11-28 10:54:31 +08:00

12 lines
238 B
Dart

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