1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;

#[derive(Clone, Debug, Serialize, Deserialize)]
pub enum ProjectLicense {
    Unknown,
    Apache2,
    Custom { license: String, link: String },
}

impl Default for ProjectLicense {
    fn default() -> Self {
        ProjectLicense::Unknown
    }
}