1pub mod context; 2pub mod react_query; 3pub mod swr; 4 5pub use context::HookContext; 6 7/// Represents a generated hook file. 8#[derive(Debug, Clone)] 9pub struct HookFile { 10 pub filename: String, 11 pub content: String, 12}