Move SlashCommandWorkingSet
to assistant_slash_command
(#23252)
This PR moves the `SlashCommandWorkingSet` out of the `assistant` crate and into `assistant_slash_command`. This will unlock moving some things that depend on it out of the `assistant` crate. Release Notes: - N/A
This commit is contained in:
parent
b7726238ad
commit
c9f24c7d45
7 changed files with 13 additions and 11 deletions
|
@ -1,8 +1,10 @@
|
|||
mod extension_slash_command;
|
||||
mod slash_command_registry;
|
||||
mod slash_command_working_set;
|
||||
|
||||
pub use crate::extension_slash_command::*;
|
||||
pub use crate::slash_command_registry::*;
|
||||
pub use crate::slash_command_working_set::*;
|
||||
use anyhow::Result;
|
||||
use futures::stream::{self, BoxStream};
|
||||
use futures::StreamExt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue