feat: add context

This commit is contained in:
2025-02-14 22:43:49 +01:00
parent e5053ecabd
commit 074f7caf01
3 changed files with 17 additions and 4 deletions

View File

@@ -2,6 +2,12 @@ use std::path::PathBuf;
use kdl::{KdlDocument, KdlNode, KdlValue};
#[derive(Debug, Clone)]
pub struct Context {
pub project: Project,
pub plan: Option<Plan>,
}
#[derive(Debug, Clone)]
pub struct Plan {
pub name: String,