Files
llmx/codex-rs/protocol/src/custom_prompts.rs

12 lines
236 B
Rust
Raw Normal View History

use serde::Deserialize;
use serde::Serialize;
use std::path::PathBuf;
use ts_rs::TS;
#[derive(Serialize, Deserialize, Debug, Clone, TS)]
pub struct CustomPrompt {
pub name: String,
pub path: PathBuf,
pub content: String,
}