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