gotcha 0.4.0

Enhanced web framework built on top of Axum with OpenAPI, metrics, and configuration management
Documentation
1
2
3
4
5
6
7
8
9
10
11
use gotcha::Json;
use gotcha::api;

struct CanSkipFields;

#[api]
pub async fn handler_with_can_skip_fields(#[api(skip)] can_skip_fields: CanSkipFields) -> () {
    ()
}

fn main(){}