systemprompt-models 0.1.18

Shared data models and types for systemprompt.io OS
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ModuleInfo {
    pub name: String,
    pub version: String,
    pub description: Option<String>,
    pub api_prefix: String,
    pub docs_url: String,
}