assistant_text_thread.rs
 1#[cfg(test)]
 2mod assistant_text_thread_tests;
 3mod text_thread;
 4mod text_thread_store;
 5
 6pub use crate::text_thread::*;
 7pub use crate::text_thread_store::*;
 8
 9use client::Client;
10use gpui::App;
11use std::sync::Arc;
12
13pub fn init(client: Arc<Client>, _: &mut App) {
14    text_thread_store::init(&client.into());
15}