library is now conflicting with client and its breaking it, but lets change the client

This commit is contained in:
Priec
2025-07-29 23:25:10 +02:00
parent 05bb84fc98
commit 20b428264e
10 changed files with 109 additions and 324 deletions

View File

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