packager/manifest/src/ext.rs

12 lines
269 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 Extension {}
impl Display for Extension {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "")
}
2023-10-14 22:39:44 +02:00
}