winget_types/shared/
manifest.rs

1use crate::ManifestType;
2
3pub trait Manifest {
4    const SCHEMA: &'static str;
5
6    const TYPE: ManifestType;
7}