mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 01:54:37 +00:00 
			
		
		
		
	 c0aef8f4fe
			
		
	
	
		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;
 | |
| }
 |