githttp-fs 1.0.5

A git-backed content management database served over HTTP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// githttp-fs
//
// Git-based Content Management System
// Copyright: 2026, Valerian Saliou <valerian@valeriansaliou.name>
// License: Mozilla Public License v2.0 (MPL v2.0)

pub mod commits;
pub mod files;
pub mod tenant;

use serde::Deserialize;

#[derive(Deserialize)]
pub struct AuthorRequest {
    pub name: String,
    pub email: String,
}