packager/manifest/src/pkgr.rs
Didier f050daf035
All checks were successful
/ check (push) Successful in 38s
format: fix formatting
2023-07-17 21:23:59 +02:00

11 lines
259 B
Rust

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