Skip to main content

levi_core/entities/
project.rs

1use myko::prelude::*;
2
3/// Project identity, minted by `levi init`. id = project UUID (32 hex chars),
4/// stored in the first event on the ref.
5#[myko_item]
6pub struct Project {
7    pub name: String,
8    /// RFC3339
9    pub created: String,
10}