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 create;
mod set_avatar_url;
mod set_email;
mod set_login_name;
mod set_metadata;
mod set_name;

pub(super) use create::*;
pub(super) use set_avatar_url::*;
pub(super) use set_email::*;
pub(super) use set_login_name::*;
pub(super) use set_metadata::*;
pub(super) use set_name::*;