mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 19:43:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			204 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			204 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
use lib_infra::code_gen;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let crate_name = env!("CARGO_PKG_NAME");
 | 
						|
    code_gen::protobuf_file::gen(crate_name);
 | 
						|
 | 
						|
    #[cfg(feature = "dart")]
 | 
						|
    code_gen::dart_event::gen(crate_name);
 | 
						|
}
 |