mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-17 21:34:23 +01:00
16 lines
385 B
Rust
16 lines
385 B
Rust
use etcetera::AppStrategyArgs;
|
|
use once_cell::sync::Lazy;
|
|
pub mod commands;
|
|
pub mod log_usage;
|
|
pub mod logging;
|
|
pub mod session;
|
|
|
|
// Re-export commonly used types
|
|
pub use session::Session;
|
|
|
|
pub static APP_STRATEGY: Lazy<AppStrategyArgs> = Lazy::new(|| AppStrategyArgs {
|
|
top_level_domain: "Block".to_string(),
|
|
author: "Block".to_string(),
|
|
app_name: "goose".to_string(),
|
|
});
|