mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 19:43:52 +00:00 
			
		
		
		
	* 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;
 | 
						|
}
 |