context.rs

 1use gpui::SharedString;
 2
 3/// Some context attached to a message in a thread.
 4#[derive(Debug, Clone)]
 5pub struct Context {
 6    pub name: SharedString,
 7    pub kind: ContextKind,
 8    pub text: SharedString,
 9}
10
11#[derive(Debug, Clone, PartialEq, Eq, Hash)]
12pub enum ContextKind {
13    File,
14}