use std::collections::HashMap;
pub const VERSION: &str = "org.opencontainers.image.version";
pub const ICON: &str = "dev.candle.wick.package.icon";
pub const _TYPE: &str = "dev.candle.wick.type";
pub const AUTHORS: &str = "org.opencontainers.image.authors";
pub const VENDORS: &str = "org.opencontainers.image.vendors";
pub const DESCRIPTION: &str = "org.opencontainers.image.description";
pub const DOCUMENTATION: &str = "org.opencontainers.image.documentation";
pub const LICENSES: &str = "org.opencontainers.image.licenses";
pub const TITLE: &str = "org.opencontainers.image.title";
#[derive(Debug, Clone)]
#[must_use]
pub struct Annotations(HashMap<String, String>);
impl Annotations {
#[allow(unused)]
pub(crate) const fn inner(&self) -> &HashMap<String, String> {
&self.0
}
pub const fn new(map: HashMap<String, String>) -> Self {
Self(map)
}
}