gitea-sdk-rs 0.1.0

Rust SDK for the Gitea API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2026 infinitete. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

//! Types for issues including metadata, templates, tracking, and timelines.

pub mod core;
pub mod template;
pub mod timeline;
pub mod tracking;

pub use core::*;
pub use template::*;
pub use timeline::*;
pub use tracking::*;