some_random_api/structs/
chatbot.rs

1use serde::Deserialize;
2
3#[derive(Debug, Deserialize)]
4pub struct ChatBotResponse {
5    pub response: String,
6}