pawan/config/target.rs
1use serde::{Deserialize, Serialize};
2use std::path::PathBuf;
3
4/// Configuration for a target project
5#[derive(Debug, Clone, Serialize, Deserialize)]
6/// Configuration for a target project
7///
8/// This struct represents configuration for a specific target project that Pawan
9/// can work with. It includes the project path and description.
10pub struct TargetConfig {
11 /// Path to the project root
12 pub path: PathBuf,
13
14 /// Description of the project
15 pub description: String,
16}