mvc_views 0.1.4

A procedural macro to append rendering blocks to Actix Web handler functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# mvc_views


A procedural macro to append rendering blocks to Actix Web handler functions in an MVC pattern.

## Features


- Automatically appends rendering blocks to functions within a module.
- Ensures functions return `HttpResponse` with rendered content from HTML templates.
- Simple to use: apply the macro to a module, and it processes all functions within.

## Installation


Add `mvc_views` to your `Cargo.toml`:

```toml
[dependencies]
mvc_views = "0.1.0"