packager/manifest/src/pkgr.rs

12 lines
259 B
Rust
Raw Normal View History

use serde::{Deserialize, Serialize};
2023-10-14 22:39:44 +02:00
use std::fmt::{Display, Formatter};
2023-10-14 22:39:39 +02:00
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PKGR {}
impl Display for PKGR {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "")
}
2023-10-14 22:39:44 +02:00
}