#[from_ref(skip)]
use axum_macros::FromRef;
#[derive(Clone, FromRef)]
struct AppState {
auth_token: String,
also_string: String,
}
fn main() {}