mirror of
https://github.com/msfjarvis/gitice
synced 2025-08-15 02:47:00 +05:30
fix: replace pub(crate)
with pub
This commit is contained in:
parent
a728a353d6
commit
5b3ec8a1b0
5 changed files with 19 additions and 20 deletions
11
src/main.rs
11
src/main.rs
|
@ -1,13 +1,12 @@
|
|||
#![feature(let_chains)]
|
||||
pub(crate) mod cli;
|
||||
pub(crate) mod git;
|
||||
pub(crate) mod logging;
|
||||
pub(crate) mod model;
|
||||
pub mod cli;
|
||||
pub mod git;
|
||||
pub mod logging;
|
||||
pub mod model;
|
||||
|
||||
use clap::Parser;
|
||||
use cli::{Opts, SubCommand};
|
||||
use git::freeze_repos;
|
||||
use git::thaw_repos;
|
||||
use git::{freeze_repos, thaw_repos};
|
||||
|
||||
fn main() -> anyhow::Result<()> {
|
||||
logging::init()?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue