refactor(structure): reorganize codebase into domain-focused modules
This commit is contained in:
19
src/cli/commands/show/mod.rs
Normal file
19
src/cli/commands/show/mod.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
use crate::cli::render::{self, Icons, Theme};
|
||||
use rusqlite::Connection;
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::Config;
|
||||
use crate::cli::robot::RobotMeta;
|
||||
use crate::core::db::create_connection;
|
||||
use crate::core::error::{LoreError, Result};
|
||||
use crate::core::paths::get_db_path;
|
||||
use crate::core::project::resolve_project;
|
||||
use crate::core::time::ms_to_iso;
|
||||
|
||||
include!("issue.rs");
|
||||
include!("mr.rs");
|
||||
include!("render.rs");
|
||||
|
||||
#[cfg(test)]
|
||||
#[path = "show_tests.rs"]
|
||||
mod tests;
|
||||
Reference in New Issue
Block a user