keos_project1/
process.rs

1//! The process model for project1.
2//!
3//! This file defines the process model of the project1.
4
5use crate::file_struct::FileStruct;
6
7/// A process state of project 1, which contains file state.
8#[derive(Default)]
9pub struct Process {
10    pub file_struct: FileStruct,
11}