mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-03 14:34:26 +01:00
17 lines
395 B
Rust
17 lines
395 B
Rust
use etcetera::AppStrategyArgs;
|
|
use once_cell::sync::Lazy;
|
|
pub mod cli;
|
|
pub mod commands;
|
|
pub mod logging;
|
|
pub mod recipe;
|
|
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(),
|
|
});
|