different structure of the library

This commit is contained in:
Priec
2025-07-29 23:04:48 +02:00
parent 46a85e4b4a
commit 05bb84fc98
18 changed files with 146 additions and 142 deletions

View File

@@ -0,0 +1,8 @@
// src/autocomplete/mod.rs
pub mod types;
pub mod gui;
pub mod state; // Add this line
// Re-export autocomplete types
pub use types::{SuggestionItem, AutocompleteState};
pub use state::AutocompleteCanvasState; // Add this line