aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/spdx_licenses/spdx_licenses.rs
blob: 95640c90028f49134922cba30aed499fe3ff5dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use shirabe_php_shim::PhpMixed;

#[derive(Debug)]
pub struct SpdxLicenses;

impl SpdxLicenses {
    pub fn new() -> Self {
        todo!()
    }

    pub fn validate(&self, license: &str) -> bool {
        todo!()
    }

    pub fn get_license_by_identifier(&self, identifier: &str) -> Option<PhpMixed> {
        todo!()
    }

    pub fn get_licenses(&self) -> PhpMixed {
        todo!()
    }
}