- simplify some examples - add macrotest for expanding/snapshotting macro expansion & add tests - add workaround to enable referencing relative dirs from macrotest files - ensure workaround doesn't get built in release - add trybuild for testing error messages & add tests - fix indeterministic macro output - sort routes after collecting - use BTreeMap instead of HashMap to preserve insertion order - fix compile_error syntax error
9 lines
172 B
Rust
9 lines
172 B
Rust
use axum_folder_router::folder_router;
|
|
|
|
#[derive(Clone)]
|
|
struct AppState;
|
|
|
|
#[folder_router("some/non/existing/directory", AppState)]
|
|
struct MyFolderRouter();
|
|
|
|
fn main() {}
|