axeon 0.2.0

A modern and flexible backend server framework for Rust
Documentation
# Axeon Examples

This directory contains examples demonstrating how to use the Axeon backend server library.

## Running the Examples

Each example can be run using:

```bash
cargo run --example <example_name>
```

## Available Examples

- **hello_world**: A minimal Axeon server that responds with "Hello, World!"
- **routing**: Demonstrates different routing techniques and HTTP methods
- **middleware**: How to use and create middleware for request/response processing

## Example Structure

Each example is self-contained and includes comments explaining key concepts.