-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ec0047
commit 42b01a3
Showing
2 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
use std::fs; | ||
|
||
use rust_embed::Embed; | ||
|
||
#[derive(Embed)] | ||
#[folder = "assets/"] | ||
pub struct Assets; | ||
|
||
pub fn get(path: &str) -> Option<Vec<u8>> { | ||
let path = format!("assets/{}", path); | ||
if let Ok(file) = fs::read(&path) { | ||
return Some(file); | ||
} | ||
return Assets::get(&path).map(|e| e.data.into_owned()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters