git_bug/entities/
mod.rs

1// git-bug-rs - A rust library for interfacing with git-bug repositories
2//
3// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
4// SPDX-License-Identifier: GPL-3.0-or-later
5//
6// This file is part of git-bug-rs/git-gub.
7//
8// You should have received a copy of the License along with this program.
9// If not, see <https://www.gnu.org/licenses/agpl.txt>.
10
11//! All the [`Entities`][`crate::replica::entity::Entity`], that can be stored
12//! in a [`Replica`][`crate::replica::Replica`].
13
14pub mod identity;
15pub mod issue;