mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 19:43:52 +00:00 
			
		
		
		
	* chore: implement chat setting * chore: clippy * chore: rename * chore: set rag_ids when creating a chat * chore: clippy * chore: fix test * chore: fix test * chore: fix test * chore: clippy
		
			
				
	
	
		
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
fn main() {
 | 
						|
  #[cfg(feature = "dart")]
 | 
						|
  flowy_codegen::protobuf_file::dart_gen(env!("CARGO_PKG_NAME"));
 | 
						|
 | 
						|
  #[cfg(feature = "tauri_ts")]
 | 
						|
  {
 | 
						|
    flowy_codegen::protobuf_file::ts_gen(
 | 
						|
      env!("CARGO_PKG_NAME"),
 | 
						|
      env!("CARGO_PKG_NAME"),
 | 
						|
      flowy_codegen::Project::Tauri,
 | 
						|
    );
 | 
						|
    flowy_codegen::protobuf_file::ts_gen(
 | 
						|
      env!("CARGO_PKG_NAME"),
 | 
						|
      env!("CARGO_PKG_NAME"),
 | 
						|
      flowy_codegen::Project::TauriApp,
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |