packager/manifest/src/pkgr.rs

11 lines
258 B
Rust
Raw Normal View History

use std::fmt::{Display, Formatter};
use serde::{Deserialize, Serialize};
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, "")
}
}