Skip to content

Commit

Permalink
refactor(errors): rename error_handling module to errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joshka committed Jul 14, 2024
1 parent bee6509 commit faccd16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions component/template/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ mod app;
mod cli;
mod components;
mod config;
mod error_handling;
mod errors;
mod logging;
mod tui;

#[tokio::main]
async fn main() -> Result<()> {
crate::error_handling::init()?;
crate::errors::init()?;
crate::logging::init()?;

let args = Cli::parse();
Expand Down

0 comments on commit faccd16

Please sign in to comment.