Files

11 lines
158 B
Rust
Raw Permalink Normal View History

2022-11-18 12:05:10 +01:00
use axum_macros::FromRef;
#[derive(Clone, FromRef)]
struct AppState {
auth_token: String,
#[from_ref(skip)]
also_string: String,
}
fn main() {}