feat: add utils.rs

provides a function that extracts auth header from headers
This commit is contained in:
Radical 2025-05-04 18:11:12 +02:00
parent bcf857d6b2
commit aa865e2ed4
2 changed files with 18 additions and 0 deletions

View file

@ -8,6 +8,7 @@ mod config;
use config::{Config, ConfigBuilder};
mod api;
pub mod crypto;
pub mod utils;
type Error = Box<dyn std::error::Error>;