mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-25 16:47:34 +01:00
9 lines
104 B
Rust
9 lines
104 B
Rust
|
use axum::extract::FromRef;
|
||
|
|
||
|
#[derive(Clone, FromRef)]
|
||
|
struct AppState<T> {
|
||
|
foo: T,
|
||
|
}
|
||
|
|
||
|
fn main() {}
|