mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
3e17613f54
* 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
12 lines
238 B
Dart
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;
|
|
}
|