diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-06 15:45:11 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-06 15:45:11 +0200 |
commit | a6baea06697f6c76c695dc4198099deb8ba916e0 (patch) | |
tree | 476a3865f6b4bef04751ba20534813a58892811b /src/cli.rs | |
parent | chore: Initial commit (diff) | |
download | back-a6baea06697f6c76c695dc4198099deb8ba916e0.zip |
feat(treewide): Prepare for first release
This commit contains many changes, as they were developed alongside `git-bug-rs` and unfortunately not separately committed. A toplevel summary would include: - Appropriate redirects, - The templating moved to `vy` (as this works with rustfmt formatting), - Search support (via `git-bug-rs`), - And better layout in the link section.
Diffstat (limited to 'src/cli.rs')
-rw-r--r-- | src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.rs b/src/cli.rs index eeeed2b..f217b00 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -19,7 +19,7 @@ use clap::Parser; #[allow(clippy::module_name_repetitions)] /// An extremely simple git issue tracking system. /// Inspired by tvix's panettone -pub struct Cli { +pub(crate) struct Cli { /// The path to the configuration file. The file should be written in JSON. pub config_file: PathBuf, } |