git-bug 0.2.4

A rust library for interfacing with git-bug repositories
Documentation
// git-bug-rs - A rust library for interfacing with git-bug repositories
//
// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This file is part of git-bug-rs/git-gub.
//
// You should have received a copy of the License along with this program.
// If not, see <https://www.gnu.org/licenses/agpl.txt>.

use super::decode;

mod add_comment;
mod create;
mod edit_comment;
mod label_change;
mod noop;
mod set_metadata;
mod set_status;
mod set_title;

pub(super) use add_comment::*;
pub(super) use create::*;
pub(super) use edit_comment::*;
pub(super) use label_change::*;
pub(super) use noop::*;
pub(super) use set_metadata::*;
pub(super) use set_status::*;
pub(super) use set_title::*;