mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
11 lines
158 B
Rust
11 lines
158 B
Rust
|
use axum_macros::FromRef;
|
||
|
|
||
|
#[derive(Clone, FromRef)]
|
||
|
struct AppState {
|
||
|
auth_token: String,
|
||
|
#[from_ref(skip)]
|
||
|
also_string: String,
|
||
|
}
|
||
|
|
||
|
fn main() {}
|