fix: replace pub(crate) with pub

This commit is contained in:
Harsh Shandilya 2023-05-12 10:46:58 +05:30
parent a728a353d6
commit 5b3ec8a1b0
No known key found for this signature in database
5 changed files with 19 additions and 20 deletions

View file

@ -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()?;