Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Sep 5, 2024
1 parent 2c8b089 commit 12a31b4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions crates/libs/helpers/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ pub fn default_metadata() -> Vec<metadata::File> {
vec![
metadata::File::new(std::include_bytes!("../../bindgen/default/Windows.winmd").to_vec())
.expect("invalid winmd"),
metadata::File::new(std::include_bytes!("../../bindgen/default/Windows.Win32.winmd").to_vec())
.expect("invalid winmd"),
metadata::File::new(std::include_bytes!("../../bindgen/default/Windows.Wdk.winmd").to_vec())
.expect("invalid winmd"),
metadata::File::new(
std::include_bytes!("../../bindgen/default/Windows.Win32.winmd").to_vec(),
)
.expect("invalid winmd"),
metadata::File::new(
std::include_bytes!("../../bindgen/default/Windows.Wdk.winmd").to_vec(),
)
.expect("invalid winmd"),
]
}

Expand Down

0 comments on commit 12a31b4

Please sign in to comment.