0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-06 14:52:41 +01:00

Fix webpage not being rendered

This commit is contained in:
Delta1925 2023-04-16 01:07:43 +02:00
parent a91b213dbf
commit 2a22617752
No known key found for this signature in database
GPG key ID: 1C21ACE44193CB25
7 changed files with 59 additions and 14 deletions

View file

@ -10,7 +10,14 @@ use std::path::{Path, PathBuf};
#[macro_export]
macro_rules! pending_path {
() => {
Path::new(&SETTINGS.root_folder).join(PENDING_FOLDER)
Path::new(&SETTINGS.root_folder).join("pending")
};
}
#[macro_export]
macro_rules! webpage_path {
() => {
Path::new("assets").join("webpage")
};
}