From d46bdc9dd66035beb4e9503cda14c6bc22947364 Mon Sep 17 00:00:00 2001 From: Tristan Druyen Date: Tue, 4 Mar 2025 15:41:03 +0100 Subject: [PATCH] Clean up README formatting --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 3fda7aa..6aeba5b 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![Documentation](https://docs.rs/axum-controller/badge.svg)](https://docs.rs/axum-controller) # Axum-Controller + Helper macro for [axum-typed-routing](https://github.com/jvdwrf/axum-typed-routing). Adds a `#[controller(...)]` macro for easy wrapping of multiple routes inside of a "controller" Struct. @@ -10,14 +11,12 @@ See example [here](axum-controller/examples/controller.rs). See the [docs](https://docs.rs/axum-controller) for more information. - ## Licensing This repository, like all my personal projects, is licensed under the **GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later)**. This ensures that modifications to the code remain open source when used in network services. If the AGPL license doesn't suit your needs, a version under more permissive terms (like **MIT**, **Apache**, or **BSD** license) is available for a small fee. Please contact me directly via the email in the crate metadata for licensing inquiries. - ## Inspiration & Influences This crate is inspired by and uses/used [axum-typed-routing](https://lib.rs/crates/axum-typed-routing) & [route_controller](https://lib.rs/crates/route_controller) .