Skip to main content

systemprompt_models/profile/
site.rs

1//! Site identity block of the profile (title, URLs, branding).
2//!
3//! Copyright (c) systemprompt.io — Business Source License 1.1.
4//! See <https://systemprompt.io> for licensing details.
5
6use serde::{Deserialize, Serialize};
7
8#[derive(Debug, Clone, Serialize, Deserialize, schemars::JsonSchema)]
9#[serde(deny_unknown_fields)]
10pub struct SiteConfig {
11    pub name: String,
12
13    #[serde(default)]
14    pub github_link: Option<String>,
15}