lighty_launch/
lib.rs

1// Copyright (c) 2025 Hamadi
2// Licensed under the MIT License
3
4pub mod launch;
5pub mod arguments;
6pub mod errors;
7pub mod installer;
8
9// Re-export commonly used items
10pub use launch::{LaunchBuilder, LaunchConfig};
11pub use installer::Installer;