assistant_text_thread.rs

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