ghostscope 0.1.1

Command-line entrypoint that drives GhostScope compiler, loader, and UI end-to-end.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Configuration management for GhostScope
//!
//! This module handles both command line arguments and configuration file loading.
//! Configuration priority (highest to lowest):
//! 1. Command line arguments
//! 2. --config specified file
//! 3. ~/.ghostscope/config.toml
//! 4. ./ghostscope.toml

pub mod args;
pub mod merged;
pub mod settings;

pub use args::{Args, LayoutMode, ParsedArgs};
pub use merged::MergedConfig;
pub use settings::{Config, LogLevel, PanelType};