moved theme assets local to crate (#2329)

* moved theme assets local to crate

* remove the TODO comment
This commit is contained in:
Darren Schroeder 2020-08-11 13:57:03 -05:00 committed by GitHub
parent 2ad07912d9
commit 43e9c89125
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View file

@ -77,7 +77,7 @@ impl Default for HtmlTheme {
}
#[derive(RustEmbed)]
#[folder = "../../assets/"] // TODO: Should assets be part of the crate versus the project?
#[folder = "assets/"]
struct Assets;
pub struct ToHTML;