reorganize template processor, implement new server options, optimize component init arguments

This commit is contained in:
yggverse 2025-06-25 00:42:22 +03:00
parent 60f702b3d1
commit b93f389304
9 changed files with 126 additions and 61 deletions

View file

@ -7,5 +7,7 @@ pub enum Response<'a> {
/// Includes reference to the original request
NotFound(&'a str),
/// Includes bytes array
Success(&'a [u8]),
File(&'a [u8]),
/// Includes bytes array + public root directory status
Directory(String, bool),
}