feat: todo's, add image cache control

This commit is contained in:
2026-03-20 21:47:48 +01:00
parent 12388a9908
commit 0dbc9dcbc1
8 changed files with 143 additions and 38 deletions

View File

@@ -1,4 +1,4 @@
#![feature(seek_stream_len, once_cell_try)]
#![feature(seek_stream_len, once_cell_try, decl_macro, duration_constructors)]
#![allow(clippy::future_not_send)] // will get to fix these later
//! # About, Licensing and More
@@ -24,7 +24,7 @@ use std::fs::File;
use clap::Parser;
use crate::ext::FileExt;
use crate::ext::FileExt as _;
pub mod args;
pub mod auth;
@@ -33,6 +33,7 @@ pub mod consts;
pub mod ext;
pub mod serdes;
pub mod server;
pub mod utils;
#[tokio::main]
async fn main() -> anyhow::Result<()> {