From 8c2b70c8cf83ef48fa27e41fb27810df0bf70375 Mon Sep 17 00:00:00 2001 From: Fabian Schmidt Date: Mon, 10 Mar 2025 12:24:08 +0100 Subject: [PATCH] Add explanation of crate in readme --- Readme.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Readme.md diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..96a09f5 --- /dev/null +++ b/Readme.md @@ -0,0 +1,5 @@ +# The goal + +The goal of this crate is to find a way to annotate functions with an attribute macro like `#[get("/")]` and have it automatically added in a global registry. +Actix for example still requires you to register all functions annotated in such a way with the service method, I don't need to do that in Spring Boot applications, I just use the necessary annotations. +This crate might not actually end up presenting a solution, but rather document why it's not possible to do so, only time will tell.