Files

9 lines
104 B
Rust
Raw Permalink Normal View History

use axum::extract::FromRef;
#[derive(Clone, FromRef)]
struct AppState<T> {
foo: T,
}
fn main() {}