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