소스 검색

aya-gen: fix lint 👀

Alessandro Decina 2 년 전
부모
커밋
cffff273a1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      aya-gen/src/lib.rs

+ 1 - 1
aya-gen/src/lib.rs

@@ -8,7 +8,7 @@ pub mod bindgen;
 pub mod generate;
 pub mod rustfmt;
 
-pub use generate::{InputFile, generate};
+pub use generate::{generate, InputFile};
 
 pub fn write_to_file<T: AsRef<Path>>(path: T, code: &str) -> Result<(), io::Error> {
     let mut file = File::create(path)?;