gitea-sdk-rs 0.1.0

Rust SDK for the Gitea API
Documentation
// 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.

//! Request option types for repository API endpoints.

pub mod branch;
pub mod collaborator;
pub mod core;
pub mod file;
pub mod key;
pub mod label;
pub mod migration;
pub mod misc;
pub mod tag;
pub mod wiki;

pub use branch::*;
pub use collaborator::*;
pub use core::*;
pub use file::*;
pub use key::*;
pub use label::*;
pub use migration::*;
pub use misc::*;
pub use tag::*;
pub use wiki::*;