iocaine 2.4.1

The deadliest poison known to AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: 2025 Gergely Nagy
// SPDX-FileContributor: Gergely Nagy
//
// SPDX-License-Identifier: MIT

use axum::http::HeaderMap;
use std::collections::BTreeMap;

#[derive(Debug, Clone)]
pub struct Request {
    pub method: String,
    pub headers: HeaderMap,
    pub path: String,
    pub params: BTreeMap<String, String>,
}