Files
damn_simple_architecture/dsx_server/src/common/config.rs
T
zxq5 a1d7b54479 - created dsx and dsx_server in place of dsx-build
- dsx replaces dsx-build and is a build tool/package manager for the DSA
  ecosystem
- dsx_server is the repository/server for dsx packages.

dsx is a WIP.
2026-02-22 21:44:41 +00:00

46 lines
902 B
Rust

use rocket::serde;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DsxConfig {
pub name: String,
#[serde(default)]
pub description: Option<String>,
#[serde(default)]
pub remote_url: Option<String>,
#[serde(default)]
pub binaries: Vec<Binary>,
// todo!
// #[serde(default)]
// pub libraries: Vec<Library>,
}
impl DsxConfig {
pub fn new(name: &str) -> Self {
Self {
name: name.to_string(),
description: None,
remote_url: None,
binaries: Vec::new(),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Binary {
pub name: String,
pub path: String,
}
impl Binary {
pub fn new(name: &str, path: &str) -> Self {
Self {
name: name.to_string(),
path: path.to_string(),
}
}
}